forked from MapComplete/MapComplete
Reformat all files with prettier
This commit is contained in:
parent
e22d189376
commit
b541d3eab4
382 changed files with 50893 additions and 35566 deletions
|
@ -1,13 +1,12 @@
|
|||
import {Store, UIEventSource} from "../../Logic/UIEventSource";
|
||||
import BaseUIElement from "../BaseUIElement";
|
||||
import { Store, UIEventSource } from "../../Logic/UIEventSource"
|
||||
import BaseUIElement from "../BaseUIElement"
|
||||
|
||||
export interface ReadonlyInputElement<T> extends BaseUIElement{
|
||||
GetValue(): Store<T>;
|
||||
IsValid(t: T): boolean;
|
||||
export interface ReadonlyInputElement<T> extends BaseUIElement {
|
||||
GetValue(): Store<T>
|
||||
IsValid(t: T): boolean
|
||||
}
|
||||
|
||||
|
||||
export abstract class InputElement<T> extends BaseUIElement implements ReadonlyInputElement<any>{
|
||||
abstract GetValue(): UIEventSource<T>;
|
||||
abstract IsValid(t: T): boolean;
|
||||
export abstract class InputElement<T> extends BaseUIElement implements ReadonlyInputElement<any> {
|
||||
abstract GetValue(): UIEventSource<T>
|
||||
abstract IsValid(t: T): boolean
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue