graphdb-workbench
Version:
The web application for GraphDB APIs
21 lines (20 loc) • 512 B
TypeScript
export declare enum OpenIdAuthFlowType {
CODE = "code",
CODE_NO_PKCE = "code_no_pkce",
IMPLICIT = "implicit"
}
export declare enum OpenIdResponseType {
CODE = "code",
TOKEN = "token id_token"
}
export interface AuthFlowParams {
code?: string | null;
state?: string | null;
id_token?: string | null;
[key: string]: string | null | undefined;
}
export interface OpenIdTokens {
access_token?: string | null;
id_token?: string | null;
refresh_token?: string | null;
}