react-filter-box-updated
Version:
Conditional filter supports OR/AND, bracket, Highlighting, Autocomplete, and high extensibility
12 lines (11 loc) • 433 B
TypeScript
declare class GrammarUtils {
isSeparator(c: string): boolean;
isWhiteSpace(c: string): boolean;
findLastSeparatorIndex(text: string): number;
needSpaceAfter(char: string): boolean;
isLastCharacterWhiteSpace(text: string): boolean;
stripEndWithNonSeparatorCharacters(text: string): string;
getEndNotSeparatorCharacers(text: string): string;
}
declare const _default: GrammarUtils;
export default _default;