univ-conv
Version:
The universal binary and text converter
7 lines • 342 B
TypeScript
import { ConvertOptions } from "./core";
import { TextHelper } from "./TextHelper";
export declare class NodeTextHelper extends TextHelper {
bufferToText(buf: Uint8Array, options: ConvertOptions): Promise<string>;
textToBuffer(text: string, options: ConvertOptions): Promise<Uint8Array>;
}
//# sourceMappingURL=NodeTextHelper.d.ts.map