mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-26 11:17:04 +08:00
8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
import application = require("application");
|
|
|
|
// Set the start module for the application
|
|
application.mainModule = "main-page";
|
|
|
|
// Start the application
|
|
application.start();
|