jtc-utils
Version:
Utilities for Japanese Traditional Companies
15 lines • 691 B
text/typescript
import { type Charset, type CharsetDecoderOptions, type CharsetEncodeOptions, type CharsetEncoder, type CharsetEncoderOptions, StandardDecoder } from "./charset.mjs";
declare class Utf16beCharset implements Charset {
get name(): string;
createDecoder(options?: CharsetDecoderOptions): StandardDecoder;
createEncoder(options?: CharsetEncoderOptions): Utf16beEncoder;
isUnicode(): boolean;
isEbcdic(): boolean;
}
declare class Utf16beEncoder implements CharsetEncoder {
canEncode(str: string): boolean;
encode(str: string, options?: CharsetEncodeOptions): Uint8Array;
}
export declare const utf16be: Utf16beCharset;
export {};
//# sourceMappingURL=utf16be.d.mts.map