Interface HonuaPluginCredentialServiceExperimental

Host-provided credential service. Scope values are identifiers, never credentials.

interface HonuaPluginCredentialService {
    get: ((scope: string) => Promise<unknown>);
}

Properties

Properties

get: ((scope: string) => Promise<unknown>)