mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 18:12:09 +08:00
feat(core): TypeScript 4 + cleanup (#8967)
This commit is contained in:
@ -504,3 +504,8 @@ declare namespace com {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// core exports this symbol so apps may import them in general
|
||||
// technically they are only available for use when running that platform
|
||||
// helps avoid a webpack nonexistent warning
|
||||
export const iOSApplication = undefined;
|
||||
|
@ -528,3 +528,8 @@ global.__onLiveSync = function __onLiveSync(context?: ModuleContext) {
|
||||
const rootView = getRootView();
|
||||
livesync(rootView, context);
|
||||
};
|
||||
|
||||
// core exports this symbol so apps may import them in general
|
||||
// technically they are only available for use when running that platform
|
||||
// helps avoid a webpack nonexistent warning
|
||||
export const AndroidApplication = undefined;
|
||||
|
Reference in New Issue
Block a user