mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
23 lines
456 B
TypeScript
23 lines
456 B
TypeScript
import consoleModule = require("Console/console");
|
|
|
|
// TODO: This is put in the global context, is this the preferred approach
|
|
console = new consoleModule.Console();
|
|
|
|
export var onLaunch = function (): any {
|
|
}
|
|
|
|
export var onSuspend = function (): void {
|
|
}
|
|
|
|
export var onResume = function (): void {
|
|
}
|
|
|
|
export var onExit = function (): void {
|
|
}
|
|
|
|
export var onLowMemory = function (): void {
|
|
}
|
|
|
|
export var android = undefined;
|
|
|
|
export var ios = undefined; |