forked from daren.hsu/line_push
20 lines
398 B
TypeScript
20 lines
398 B
TypeScript
/**
|
|
* decode Base64URL
|
|
* @export
|
|
* @param {string} str - string
|
|
* @returns {string}
|
|
*/
|
|
export declare function decode(str: string): string;
|
|
/**
|
|
* encode Base64URL
|
|
* @export
|
|
* @param {string} str - string
|
|
* @returns {string}
|
|
*/
|
|
export declare function encode(str: string): string;
|
|
declare const _default: {
|
|
decode: typeof decode;
|
|
encode: typeof encode;
|
|
};
|
|
export default _default;
|