UNPKG

228 BTypeScriptView Raw
1interface MatchBounds {
2 end: number;
3 start: number;
4}
5export declare function escapeStringRegexp(str: string): string;
6export default function getMatchBounds(subject: string, str: string): MatchBounds | null;
7export {};