summaryrefslogtreecommitdiff
path: root/includes/external/addressbook/node_modules/chardet/lib/encoding/unicode.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/addressbook/node_modules/chardet/lib/encoding/unicode.d.ts')
-rw-r--r--includes/external/addressbook/node_modules/chardet/lib/encoding/unicode.d.ts27
1 files changed, 0 insertions, 27 deletions
diff --git a/includes/external/addressbook/node_modules/chardet/lib/encoding/unicode.d.ts b/includes/external/addressbook/node_modules/chardet/lib/encoding/unicode.d.ts
deleted file mode 100644
index 4fb7fd7..0000000
--- a/includes/external/addressbook/node_modules/chardet/lib/encoding/unicode.d.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-import { Context, Recogniser } from '.';
-import { Match } from '../match';
-export declare class UTF_16BE implements Recogniser {
- name(): string;
- match(det: Context): Match | null;
-}
-export declare class UTF_16LE implements Recogniser {
- name(): string;
- match(det: Context): Match | null;
-}
-interface WithGetChar {
- getChar(input: Uint8Array, index: number): number;
-}
-declare class UTF_32 implements Recogniser, WithGetChar {
- name(): string;
- getChar(_input: Uint8Array, _index: number): number;
- match(det: Context): Match | null;
-}
-export declare class UTF_32BE extends UTF_32 {
- name(): string;
- getChar(input: Uint8Array, index: number): number;
-}
-export declare class UTF_32LE extends UTF_32 {
- name(): string;
- getChar(input: Uint8Array, index: number): number;
-}
-export {};