You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-08 21:42:24 +03:00
Linting fix in TypeScript interface
This commit is contained in:
@@ -24,12 +24,12 @@ import { replaceableComponent } from "../../../utils/replaceableComponent";
|
|||||||
interface IProps {
|
interface IProps {
|
||||||
policiesAndServicePairs: any[];
|
policiesAndServicePairs: any[];
|
||||||
onFinished: (string) => void;
|
onFinished: (string) => void;
|
||||||
agreedUrls: string[], // array of URLs the user has accepted
|
agreedUrls: string[]; // array of URLs the user has accepted
|
||||||
introElement: Node,
|
introElement: Node;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IState {
|
interface IState {
|
||||||
policies: Policy[],
|
policies: Policy[];
|
||||||
busy: boolean;
|
busy: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ import { replaceableComponent } from "../../../utils/replaceableComponent";
|
|||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
pending?: boolean;
|
pending?: boolean;
|
||||||
displayName?: string // required if pending is true
|
displayName?: string; // required if pending is true
|
||||||
device?: DeviceInfo;
|
device?: DeviceInfo;
|
||||||
onDone: () => void;
|
onDone: () => void;
|
||||||
onCancel: () => void;
|
onCancel: () => void;
|
||||||
|
|||||||
Reference in New Issue
Block a user