UNPKG

projen

Version:

CDK for software projects

13 lines (12 loc) 289 B
/** * Base-64 encodes the given string. * * @param input - a string */ export declare function forgivingBase64Encode(input: string): string; /** * Decodes a base-64 string. * * @param input - a string */ export declare function forgivingBase64Decode(input: string): string | null;