@gensx/storage
Version:
Cloud storage, blobs, sqlite, and vector database providers/hooks for GenSX.
13 lines • 414 B
TypeScript
/**
* Convert string to URL-safe base64
* @param str The string to encode
* @returns URL-safe base64 encoded string
*/
export declare function toBase64UrlSafe(str: string): string;
/**
* Convert URL-safe base64 to string
* @param base64 The URL-safe base64 string to decode
* @returns Decoded string
*/
export declare function fromBase64UrlSafe(base64: string): string;
//# sourceMappingURL=base64.d.ts.map