mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
497 B
TypeScript
15 lines
497 B
TypeScript
// Type definitions for url-safe-base64 1.1
|
|
// Project: https://github.com/commenthol/url-safe-base64#readme
|
|
// Definitions by: John Wright <https://github.com/johngeorgewright>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export function decode(safe: string): string;
|
|
|
|
export function encode(base64: string): string;
|
|
|
|
export function isBase64(string: string): string;
|
|
|
|
export function isUrlSafeBase64(string: string): string;
|
|
|
|
export function trim(string: string): string;
|