mirror of
https://github.com/JonasunderscoreJones/api-worker.git
synced 2025-10-23 18:39:19 +02:00
5 lines
182 B
TypeScript
5 lines
182 B
TypeScript
export declare type BrowserEncoding = 'hex' | 'base64' | 'utf8';
|
|
/**
|
|
* @hidden
|
|
*/
|
|
export declare const mustGetEncoder: (encoding: BrowserEncoding) => (data: Uint8Array) => string;
|