tachijs
Version:
Highly testable dead simple web server written in Typescript
9 lines • 423 B
TypeScript
export interface InjectMeta {
index: number;
key: string;
}
export declare type InjectMetaList = InjectMeta[];
export declare function getInjectMetaList(controller: any): InjectMetaList;
export declare function setInjectMetaList(controller: any, meta: InjectMetaList): void;
export declare function inject(key: string): (target: any, propertyKey: string, index: number) => void;
//# sourceMappingURL=inject.d.ts.map