add monaco editor core library

This commit is contained in:
mrsang
2021-04-13 20:03:53 +02:00
parent 163d4fa4ba
commit 3c2e622b3a
101 changed files with 1524 additions and 0 deletions

19
Antedit/ts/main.ts Normal file
View File

@ -0,0 +1,19 @@
namespace OS {
export namespace application {
/**
*
* @class Antedit
* @extends {BaseApplication}
*/
export class Antedit extends BaseApplication {
constructor(args: AppArgumentsType[]) {
super("Antedit", args);
}
main(): void {
// YOUR CODE HERE
}
}
}
}