UNPKG

@draft-js-plugins/mention

Version:
10 lines (9 loc) 299 B
export interface SearchTextAtResult { begin: number; end: number; matchingString: string; } /** * Return tail end of the string matching trigger upto the position. */ export default function getSearchTextAt(blockText: string, position: number, triggers: string[]): SearchTextAtResult;