UNPKG

251 BTypeScriptView Raw
1import { Container } from ".";
2import { Constructor } from "./types";
3export declare function ContainerAware<TBase extends Constructor>(extend?: TBase): {
4 new (...args: any[]): {
5 container?: Container | undefined;
6 };
7} & TBase;