Initial working google auth
This commit is contained in:
parent
fb52d49f74
commit
00a40f6bba
1058 changed files with 114441 additions and 0 deletions
11
auth-service/node_modules/base64url/dist/base64url.d.ts
generated
vendored
Normal file
11
auth-service/node_modules/base64url/dist/base64url.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
/// <reference types="node" />
|
||||
export interface Base64Url {
|
||||
(input: string | Buffer, encoding?: string): string;
|
||||
encode(input: string | Buffer, encoding?: string): string;
|
||||
decode(base64url: string, encoding?: string): string;
|
||||
toBase64(base64url: string | Buffer): string;
|
||||
fromBase64(base64: string): string;
|
||||
toBuffer(base64url: string): Buffer;
|
||||
}
|
||||
declare let base64url: Base64Url;
|
||||
export default base64url;
|
||||
Loading…
Add table
Add a link
Reference in a new issue