import { ShownModallyData } from "tns-core-modules/ui/page"; import { Button } from "tns-core-modules/ui/button"; import { Label } from "tns-core-modules/ui/label"; import { Page } from "tns-core-modules/ui/page"; let closeCallback: Function; export function onShownModally(args: ShownModallyData) { closeCallback = args.closeCallback; } export function onTap() { closeCallback("sample text\n"); } export function change(args) { var button: Button =