Utf16.d.ts 249 Bytes 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 import type { IEncoder } from "../type"; /** * UTF-16 BE encoding strategy. */ export declare const Utf16BE: IEncoder; /** * UTF-16 LE encoding strategy. */ export declare const Utf16LE: IEncoder; export declare const Utf16: IEncoder;