Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AuthPKCEGrantCodeExchangeError

class AuthPKCEGrantCodeExchangeError extends CustomAuthError {
constructor(message: string, details?: {
error: string;
code: string;
}
| null
);
details: {
error: string;
code: string;
}
| null;
 
toJSON(): {
name: string;
message: string;
status: number;
details: {
error: string;
code: string;
}
| null;
}
;
}

§Extends

§
CustomAuthError
[src]

§Constructors

§
new AuthPKCEGrantCodeExchangeError(message: string, details?: {
error: string;
code: string;
}
| null
)
[src]

§Properties

§
details: {
error: string;
code: string;
}
| null
[src]

§Methods

§
toJSON(): {
name: string;
message: string;
status: number;
details: {
error: string;
code: string;
}
| null;
}
[src]