mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 05:18:39 +08:00
8 lines
260 B
TypeScript
8 lines
260 B
TypeScript
import {EventData as ObservableEventData} from "tns-core-modules/data/observable";
|
|
|
|
export function navigatedTo(args: ObservableEventData) {
|
|
setTimeout(() => {
|
|
console.log(`Time: ${(<any>global).time() - (<any>global).startTime} ms`);
|
|
});
|
|
}
|