mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00

* chore(tslint): fix tslint config & errors * chore(tslint): enable double quotes, whitespace, and arrow-return-shorthand rules and fix errors
8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
import { Page } from "tns-core-modules/ui/page";
|
|
|
|
export function onTap(args: any) {
|
|
(<any>global).startTime = (<any>global).time();
|
|
let page = <Page>args.object.page;
|
|
page.frame.navigate("css-perf-test/main-page");
|
|
}
|