2024-11-03 17:16:20 +01:00

7 lines
187 B
TypeScript

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