mirror of https://github.com/vector-im/riot-web
Linting fix in TypeScript interface
parent
8d34767768
commit
925d434d53
|
@ -24,12 +24,12 @@ import { replaceableComponent } from "../../../utils/replaceableComponent";
|
|||
interface IProps {
|
||||
policiesAndServicePairs: any[];
|
||||
onFinished: (string) => void;
|
||||
agreedUrls: string[], // array of URLs the user has accepted
|
||||
introElement: Node,
|
||||
agreedUrls: string[]; // array of URLs the user has accepted
|
||||
introElement: Node;
|
||||
}
|
||||
|
||||
interface IState {
|
||||
policies: Policy[],
|
||||
policies: Policy[];
|
||||
busy: boolean;
|
||||
}
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ import { replaceableComponent } from "../../../utils/replaceableComponent";
|
|||
|
||||
interface IProps {
|
||||
pending?: boolean;
|
||||
displayName?: string // required if pending is true
|
||||
displayName?: string; // required if pending is true
|
||||
device?: DeviceInfo;
|
||||
onDone: () => void;
|
||||
onCancel: () => void;
|
||||
|
|
Loading…
Reference in New Issue