chardet/lib/encoding/utf8.d.ts

7 lines
186 B
TypeScript
Raw Normal View History

2022-10-06 08:38:38 +00:00
import { Context, Recogniser } from '.';
import { Match } from '../match';
export default class Utf8 implements Recogniser {
name(): string;
match(det: Context): Match | null;
}