ox
Version:
Ethereum Standard Library
11 lines • 373 B
TypeScript
/**
* Shared `TextEncoder` / `TextDecoder` singletons used by primitive and codec
* modules. Centralizing them avoids constructing redundant instances per
* module and lets engines hoist them to module init time.
*
* @internal
*/
export declare const encoder: TextEncoder;
/** @internal */
export declare const decoder: TextDecoder;
//# sourceMappingURL=utf8.d.ts.map