Interface ModuleMetadata

interface ModuleMetadata {
    exports?: {
        [key: string]: any;
    };
    imports?: string[];
    init?: ((module) => void);
    key?: string;
}

Properties

exports?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
imports?: string[]
init?: ((module) => void)

Type declaration

    • (module): void
    • Parameters

      Returns void

key?: string

Generated using TypeDoc