mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
8 lines
262 B
TypeScript
8 lines
262 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`);
|
|
});
|
|
}
|