interface IOauth2Implicit {
    authorizationUrl?: string;
    description?: string;
    flow: "implicit";
    scopes?: Record<string, string>;
    type: "oauth2";
}

Properties

authorizationUrl?: string
description?: string
flow: "implicit"
scopes?: Record<string, string>
type: "oauth2"