UNPKG

260 BTypeScriptView Raw
1import { Root } from './types';
2/**
3 * Tokenizes a regular expression (that is currently a string)
4 * @param {string} regexpStr String of regular expression to be tokenized
5 *
6 * @returns {Root}
7 */
8export declare const tokenizer: (regexpStr: string) => Root;