UNPKG

@morjs/runtime-base

Version:
10 lines (9 loc) 317 B
interface IBase64 { _keyStr: string; encode: (this: IBase64, input: string) => string; decode: (this: IBase64, input: string) => string; utf8Encode: (this: IBase64, input: string) => string; utf8Decode: (this: IBase64, input: string) => string; } declare const Base64: IBase64; export { Base64 };