@morjs/runtime-base
Version:
mor runtime base
10 lines (9 loc) • 317 B
TypeScript
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 };