import OwnKeys from "./typescript/test/OwnKeys"; import SubOwnKeys from "./typescript/test/SubOwnKeys"; import { OtherExample } from "./typescript/let/OtherExample"; // import { LetExample } from "./typescript/let/LetExample"; // import { TypeExample } from "./typescript/let/TypeExample"; // import { SpreadExample } from "./typescript/let/SpreadExample"; // import { PromiseExample } from "./typescript/let/PromiseExample"; // import { GenericsExample } from "./typescript/let/GenericsExample"; // import { Exclude } from './exclude/Exclude'; // import { DecoratorExample } from "./typescript/let/DecoratorExample"; // let letExample = new LetExample(); // letExample.execute(); // let typeExample = new TypeExample(); // typeExample.execute(); // let spreadExample = new SpreadExample(); // spreadExample.execute(); // let promiseExample = new PromiseExample(); // promiseExample.execute(); // let generics = new GenericsExample(); // generics.execute(); // type AA = { // o: string; // } // paper.addEventListener<"o", AA>("o", (evt) => { // }); // let excude: Exclude = new Exclude(); // let decorator = new DecoratorExample(); let other = new OtherExample(); other.execute();