@abdellatif.dev/cryptjs
Version:
a JavaScript/TypeScript library that brings cryptographic functionality from Dart to the web
15 lines (14 loc) • 411 B
TypeScript
export default class StringBuffer {
/**
* @description Appends a string to the buffer.
* @param {string} str The string to append to the buffer.
* @returns {void}
*/
append(str: string): void;
/**
* @description Converts the buffer to a single string.
* @returns {string} The concatenated string from all appended parts.
*/
toString(): string;
#private;
}