123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- declare const version = "3.6.1";
- declare const VERSION = "3.6.1";
- declare const btoaPolyfill: (bin: string) => string;
- declare const _btoa: (bin: string) => string;
- declare const fromUint8Array: (u8a: Uint8Array, urlsafe?: boolean) => string;
- declare const utob: (u: string) => string;
- declare const encode: (src: string, urlsafe?: boolean) => string;
- declare const encodeURI: (src: string) => string;
- declare const btou: (b: string) => string;
- declare const atobPolyfill: (asc: string) => string;
- declare const _atob: (asc: string) => string;
- declare const toUint8Array: (a: string) => Uint8Array;
- declare const decode: (src: string) => string;
- declare const isValid: (src: any) => boolean;
- declare const extendString: () => void;
- declare const extendUint8Array: () => void;
- declare const extendBuiltins: () => void;
- declare const gBase64: {
- version: string;
- VERSION: string;
- atob: (asc: string) => string;
- atobPolyfill: (asc: string) => string;
- btoa: (bin: string) => string;
- btoaPolyfill: (bin: string) => string;
- fromBase64: (src: string) => string;
- toBase64: (src: string, urlsafe?: boolean) => string;
- encode: (src: string, urlsafe?: boolean) => string;
- encodeURI: (src: string) => string;
- encodeURL: (src: string) => string;
- utob: (u: string) => string;
- btou: (b: string) => string;
- decode: (src: string) => string;
- isValid: (src: any) => boolean;
- fromUint8Array: (u8a: Uint8Array, urlsafe?: boolean) => string;
- toUint8Array: (a: string) => Uint8Array;
- extendString: () => void;
- extendUint8Array: () => void;
- extendBuiltins: () => void;
- };
- export { version };
- export { VERSION };
- export { _atob as atob };
- export { atobPolyfill };
- export { _btoa as btoa };
- export { btoaPolyfill };
- export { decode as fromBase64 };
- export { encode as toBase64 };
- export { utob };
- export { encode };
- export { encodeURI };
- export { encodeURI as encodeURL };
- export { btou };
- export { decode };
- export { isValid };
- export { fromUint8Array };
- export { toUint8Array };
- export { extendString };
- export { extendUint8Array };
- export { extendBuiltins };
- export { gBase64 as Base64 };
|