summaryrefslogtreecommitdiff
path: root/includes/external/addressbook/node_modules/chardet/lib/encoding/unicode.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/chardet/lib/encoding/unicode.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/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 {};