mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-21 07:50:38 +08:00
8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
import application = require("application");
|
|
|
|
// Set the start module for the application
|
|
application.mainModule = "app/main-page";
|
|
|
|
// Start the application
|
|
application.start();
|