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
221 B
TypeScript
8 lines
221 B
TypeScript
import { Page } from "tns-core-modules/ui/page";
|
|
import { Label } from "tns-core-modules/ui/label";
|
|
|
|
export function pageLoaded(args) {
|
|
var page = <Page>args.object;
|
|
(<Label>page.content).text += " and loaded";
|
|
}
|