UNPKG

concepts-parser

Version:
12 lines (11 loc) 296 B
export declare class Word { index?: number; value?: string; isAbbr?: boolean; isNumber?: boolean; endsWithDot?: boolean; rightText?: string; constructor(value: string, index: number); reset(value: string, index: number): void; isValid(): boolean; }