crypto-es
Version:
A cryptography algorithms library compatible with ES6 and TypeScript
19 lines (17 loc) • 393 B
text/typescript
import { Encoder } from "./core.cjs";
//#region src/enc-utf16.d.ts
/**
* UTF-16 BE encoding strategy.
*/
declare const Utf16BE: Encoder;
/**
* UTF-16 encoding strategy (defaults to UTF-16 BE).
*/
declare const Utf16: Encoder;
/**
* UTF-16 LE encoding strategy.
*/
declare const Utf16LE: Encoder;
//#endregion
export { Utf16, Utf16BE, Utf16LE };
//# sourceMappingURL=enc-utf16.d.cts.map