Linting fix in TypeScript interface

This commit is contained in:
Germain Souquet 2021-07-05 09:19:19 +02:00
parent 8d34767768
commit 925d434d53
2 changed files with 4 additions and 4 deletions

View file

@ -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;
}