UNPKG

dgeni

Version:

Flexible JavaScript documentation generator used by both AngularJS and Angular

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