@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface ServiceDescription

    One service registration and the edges out of it.

    interface ServiceDescription {
        dependencies: Readonly<Record<string, string>>;
        lifetime: "singleton" | "transient";
        moduleId: string;
        token: string;
    }
    Index
    dependencies: Readonly<Record<string, string>>

    Injected token ids, keyed by the name the factory receives.

    lifetime: "singleton" | "transient"
    moduleId: string
    token: string

    The token's debug id. Container identity is the token object, not this.