Interface HonuaPluginRequestedGrantsExperimental

Authorities requested from the application. Values are identifiers, never secrets.

interface HonuaPluginRequestedGrants {
    credentialScopes?: readonly string[];
    mutation?: boolean;
    networkOrigins?: readonly string[];
    storage?: "none" | "scoped";
}

Properties

credentialScopes?: readonly string[]
mutation?: boolean
networkOrigins?: readonly string[]
storage?: "none" | "scoped"