export interface IMatcher {
    match(charCode: number): boolean;
    toString(): string;
}
