Files
WAI_Project_VUE/node_modules/chardet/lib/encoding/utf8.d.ts
2025-11-24 23:24:06 +08:00

7 lines
221 B
TypeScript

import type { Context, Recogniser } from '.';
import { type EncodingName, type Match } from '../match';
export default class Utf8 implements Recogniser {
name(): EncodingName;
match(det: Context): Match | null;
}