From 953ddd82e48dd206cef5ac94456549aed13b3ad5 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Fri, 17 Nov 2023 23:25:29 +0100 Subject: Updated 30 files and deleted 2976 files (automated) --- .../node_modules/chardet/lib/encoding/unicode.d.ts | 27 ---------------------- 1 file changed, 27 deletions(-) delete mode 100644 includes/external/addressbook/node_modules/chardet/lib/encoding/unicode.d.ts (limited to 'includes/external/addressbook/node_modules/chardet/lib/encoding/unicode.d.ts') 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 {}; -- cgit