You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wanderhome-foundry-system/node_modules/chardet/lib/encoding/iso2022.d.ts

24 lines
673 B
TypeScript

import type { Context, Recogniser } from '.';
import { type Match, type EncodingName } from '../match';
declare class ISO_2022 implements Recogniser {
escapeSequences: number[][];
name(): EncodingName;
match(det: Context): Match | null;
}
export declare class ISO_2022_JP extends ISO_2022 {
name(): EncodingName;
language(): string;
escapeSequences: number[][];
}
export declare class ISO_2022_KR extends ISO_2022 {
name(): EncodingName;
language(): string;
escapeSequences: number[][];
}
export declare class ISO_2022_CN extends ISO_2022 {
name(): EncodingName;
language(): string;
escapeSequences: number[][];
}
export {};