10 lines
399 B
TypeScript
10 lines
399 B
TypeScript
|
/**
|
||
|
* Class which exposes APIs to decode base64 strings to plaintext. See here for implementation details:
|
||
|
* https://developer.mozilla.org/en-US/docs/Glossary/Base64#the_unicode_problem
|
||
|
*/
|
||
|
/**
|
||
|
* Returns a URL-safe plaintext decoded string from b64 encoded input.
|
||
|
* @param input
|
||
|
*/
|
||
|
export declare function base64Decode(input: string): string;
|
||
|
//# sourceMappingURL=Base64Decode.d.ts.map
|