interface ModuleManifest {
    config: ConfigManifest;
    description?: string;
    lazyStart?: boolean;
    status?: {
        address: Lowercase<string>;
        children?: Record<Lowercase<string>, null | string>;
    };
}

Hierarchy (View Summary)

Properties

description?: string
lazyStart?: boolean
status?: {
    address: Lowercase<string>;
    children?: Record<Lowercase<string>, null | string>;
}