OAuthState
Home > @backstage/plugin-auth-node
> OAuthState
A type for the serialized value in the state
parameter of the OAuth authorization flow
Signature:
export type OAuthState = {
nonce: string;
env: string;
origin?: string;
scope?: string;
redirectUrl?: string;
flow?: string;
audience?: string;
};