Initial commit - Event Planner application
This commit is contained in:
6
node_modules/@borewit/text-codec/lib/index.d.ts
generated
vendored
Normal file
6
node_modules/@borewit/text-codec/lib/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
export type SupportedEncoding = "utf-8" | "utf8" | "utf-16le" | "us-ascii" | "ascii" | "latin1" | "iso-8859-1" | "windows-1252";
|
||||
/**
|
||||
* Decode text from binary data
|
||||
*/
|
||||
export declare function textDecode(bytes: Uint8Array, encoding?: SupportedEncoding): string;
|
||||
export declare function textEncode(input?: string, encoding?: SupportedEncoding): Uint8Array;
|
||||
Reference in New Issue
Block a user