mirror of
https://github.com/JosunLP/UserScriptProjectTemplate.git
synced 2025-06-21 18:11:08 +00:00
15 lines
No EOL
157 B
TypeScript
15 lines
No EOL
157 B
TypeScript
/**
|
|
* App
|
|
*/
|
|
class App {
|
|
|
|
constructor() {
|
|
this.main();
|
|
}
|
|
|
|
private main() {
|
|
console.log('Hello World!');
|
|
}
|
|
}
|
|
|
|
new App(); |