fix typing errors

This commit is contained in:
Sebastian Sdorra
2019-10-19 17:15:53 +02:00
parent 6e7a08a3bb
commit 5debee5b49
11 changed files with 206 additions and 1210 deletions

View File

@@ -1,7 +1,7 @@
type Predicate = (props: object) => boolean;
type Predicate = (props: any) => boolean;
type ExtensionRegistration = {
predicate: (props: object) => boolean;
predicate: Predicate;
extension: any;
};