/
moreqqq
/
DeliveryService
Обзор
Документация
Войти
/
moreqqq
/
DeliveryService
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
server/node_modules/chardet/lib/encoding/unicode.d.ts
27 строк
880 B
moreqqq
написал тесты
29 май 2026, 22:13
29 май 2026, 22:13
6f740ff
Код
Авторство
О чём код?
import type { Context, Recogniser } from '.'; import { type Match, type EncodingName } from '../match'; export declare class UTF_16BE implements Recogniser { name(): EncodingName; match(det: Context): Match | null; } export declare class UTF_16LE implements Recogniser { name(): EncodingName; match(det: Context): Match | null; } interface WithGetChar { getChar(input: Uint8Array, index: number): number; } declare class UTF_32 implements Recogniser, WithGetChar { name(): EncodingName; getChar(_input: Uint8Array, _index: number): number; match(det: Context): Match | null; } export declare class UTF_32BE extends UTF_32 { name(): EncodingName; getChar(input: Uint8Array, index: number): number; } export declare class UTF_32LE extends UTF_32 { name(): EncodingName; getChar(input: Uint8Array, index: number): number; } export {};