Type alias ExtensionPackManifestEntry

ExtensionPackManifestEntry: ExtensionPackResolver & {
    priority?: number;
    enabled?: boolean;
    options?: Record<string, unknown>;
    identifier?: string;
}

Type declaration

  • Optional priority?: number

    Priority applied to descriptors emitted by this pack unless they override it individually.

  • Optional enabled?: boolean

    Allows enabling/disabling the entire pack via manifest.

  • Optional options?: Record<string, unknown>

    Optional configuration payload passed to the pack factory.

  • Optional identifier?: string

    Identifier for diagnostics (e.g. file path within manifest).