basant307/AI_Governance_Project
048
1import type { EncodingName, Match } from '../match';2export interface Recogniser {3 match(input: Context): Match | null;4 name(input?: Context): EncodingName;5 language?(): string | undefined;6}7export interface Context {8 byteStats: number[];9 c1Bytes: boolean;10 rawInput: Uint8Array;11 rawLen: number;12 inputBytes: Uint8Array;13 inputLen: number;14}15 