@pilotlab/lux-tools
Version:
A luxurious user experience framework, developed by your friends at Pilot.
9 lines (8 loc) • 341 B
TypeScript
export declare class Injector {
private static _registry;
static get(key: string): any;
static set(key: string, value: any): void;
}
export declare function injectProperty(...keys: string[]): (target: any, key: string) => void;
export declare function inject(...keys: string[]): (...args: any[]) => any;
export default Injector;