UNPKG

dgeni

Version:

Flexible JavaScript documentation generator used by both AngularJS and Angular

10 lines (9 loc) 257 B
export interface FactoryDef { (...args: any[]): any; name?: string; } export declare type TypeDef = FactoryDef; export declare type InjectionType = 'factory' | 'type' | 'value'; export interface Module { [token: string]: [InjectionType, any]; }