Interface OidcAuth

interface OidcAuth {
    type: "oidc";
    jwtToken: string | () => string | Promise<string>;
}

Properties

Properties

type: "oidc"
jwtToken: string | () => string | Promise<string>

The OpenID Connect JWT, or a function returning one.