mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
8 lines
310 B
TypeScript
8 lines
310 B
TypeScript
export declare class OAuth2Helper {
|
|
static getCodeVerifier(): string;
|
|
static getCodeChallengeFromVerifier(verifier: string): string;
|
|
static getAuthHeader(clientId: string, clientSecret: string): string;
|
|
static generateRandomString(length: number): string;
|
|
private static escapeBase64Url;
|
|
}
|