chore: return genericObject for cli (#2178)

This commit is contained in:
Alex Varchuk 2022-10-04 15:50:57 +03:00 committed by GitHub
parent 127ef260b9
commit cc9818ca41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
custom.d.ts vendored
View File

@ -23,3 +23,5 @@ declare var reactHotLoaderGlobal: any;
interface Element { interface Element {
scrollIntoViewIfNeeded(centerIfNeeded?: boolean): void; scrollIntoViewIfNeeded(centerIfNeeded?: boolean): void;
} }
type GenericObject = Record<string, any>;