fix(core): global index typing fix for unit testing framework (#8915)

This commit is contained in:
Nathan Walker
2020-09-29 08:18:36 -07:00
committed by GitHub
parent 647926ee28
commit 806fc880dd

View File

@ -1,6 +1,6 @@
import { Observable } from '../data/observable';
export declare class NativeScriptGlobalState {
events: Observable<any>;
events: Observable;
launched: boolean;
}
export function installPolyfills(moduleName: string, exportNames: string[]): void;