mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 05:18:39 +08:00
11 lines
285 B
TypeScript
11 lines
285 B
TypeScript
import application = require("application");
|
|
|
|
// Set the start module for the application
|
|
application.mainModule = "main-page";
|
|
|
|
// TODO: This is only neede because of the deply script.
|
|
application.cssFile = "app/TelerikNEXT/app.css";
|
|
|
|
// Start the application
|
|
application.start();
|