@atomist/sdm
Version:
Atomist Software Delivery Machine SDK
13 lines • 318 B
TypeScript
/**
* Base 64 encode the given string
* @param {string} str
* @return {string}
*/
export declare function encode(str: string): string;
/**
* Decode the given Base 64 string
* @param {string} coded
* @return {string}
*/
export declare function decode(coded: string): string;
//# sourceMappingURL=base64.d.ts.map