summaryrefslogtreecommitdiff
path: root/includes/external/addressbook/node_modules/iconv-lite/lib/index.d.ts
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2023-11-17 23:25:29 +0100
committerRaindropsSys <raindrops@equestria.dev>2023-11-17 23:25:29 +0100
commit953ddd82e48dd206cef5ac94456549aed13b3ad5 (patch)
tree8f003106ee2e7f422e5a22d2ee04d0db302e66c0 /includes/external/addressbook/node_modules/iconv-lite/lib/index.d.ts
parent62a9199846b0c07c03218703b33e8385764f42d9 (diff)
downloadpluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.tar.gz
pluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.tar.bz2
pluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.zip
Updated 30 files and deleted 2976 files (automated)
Diffstat (limited to 'includes/external/addressbook/node_modules/iconv-lite/lib/index.d.ts')
-rw-r--r--includes/external/addressbook/node_modules/iconv-lite/lib/index.d.ts41
1 files changed, 0 insertions, 41 deletions
diff --git a/includes/external/addressbook/node_modules/iconv-lite/lib/index.d.ts b/includes/external/addressbook/node_modules/iconv-lite/lib/index.d.ts
deleted file mode 100644
index 99f200f..0000000
--- a/includes/external/addressbook/node_modules/iconv-lite/lib/index.d.ts
+++ /dev/null
@@ -1,41 +0,0 @@
-/*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License.
- * REQUIREMENT: This definition is dependent on the @types/node definition.
- * Install with `npm install @types/node --save-dev`
- *--------------------------------------------------------------------------------------------*/
-
-declare module 'iconv-lite' {
- // Basic API
- export function decode(buffer: Buffer, encoding: string, options?: Options): string;
-
- export function encode(content: string, encoding: string, options?: Options): Buffer;
-
- export function encodingExists(encoding: string): boolean;
-
- // Stream API
- export function decodeStream(encoding: string, options?: Options): NodeJS.ReadWriteStream;
-
- export function encodeStream(encoding: string, options?: Options): NodeJS.ReadWriteStream;
-
- // Low-level stream APIs
- export function getEncoder(encoding: string, options?: Options): EncoderStream;
-
- export function getDecoder(encoding: string, options?: Options): DecoderStream;
-}
-
-export interface Options {
- stripBOM?: boolean;
- addBOM?: boolean;
- defaultEncoding?: string;
-}
-
-export interface EncoderStream {
- write(str: string): Buffer;
- end(): Buffer | undefined;
-}
-
-export interface DecoderStream {
- write(buf: Buffer): string;
- end(): string | undefined;
-}