import { ProxyExample } from "./ProxyExample"; import { LetExample } from "./LetExample"; import { TypeExample } from "./TypeExample"; import { SpreadExample } from "./SpreadExample"; import { PromiseExample } from "./PromiseExample"; import { GenericsExample } from "./GenericsExample"; import { DecoratorExample } from "./DecoratorExample"; import { OtherExample } from "./OtherExample"; // 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(); // let decorator = new DecoratorExample(); // let other = new OtherExample(); // other.execute(); let proxy = new ProxyExample(); proxy.execute();