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.
24 lines
673 B
TypeScript
24 lines
673 B
TypeScript
3 weeks ago
|
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 {};
|