UNPKG

char-encoding-detector

Version:
9 lines (8 loc) 206 B
import { Recognizer, Context, Match } from '../type'; /** * Charset recognizer for UTF-8 */ export default class utf8 implements Recognizer { name(): string; match(det: Context): Match; }