mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 20:11:24 +08:00
7 lines
228 B
TypeScript
7 lines
228 B
TypeScript
import {EventData as ObservableEventData} from "data/observable";
|
|
|
|
export function navigatedTo(args: ObservableEventData) {
|
|
setTimeout(() => {
|
|
console.log(`Time: ${global.time() - global.startTime} ms`);
|
|
});
|
|
} |