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

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

View File

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

View File

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

View File

@@ -26,7 +26,7 @@
"forceConsistentCasingInFileNames": true,
},
"include": [
"./electronts/**/*"
"./electron/**/*"
]
}