feat: init ts

This commit is contained in:
gaoshuaixing
2025-01-07 19:08:48 +08:00
parent 3bee5f6d82
commit 8feb15ff4e
36 changed files with 1 additions and 55 deletions

View File

@@ -0,0 +1,18 @@
'use strict';
/**
* example
* @class
*/
class ExampleController {
/**
* test
*/
async test () {
return 'hello electron-egg';
}
}
ExampleController.toString = () => '[class ExampleController]';
module.exports = ExampleController;