9 lines
260 B
TypeScript
9 lines
260 B
TypeScript
import { Root } from './types';
|
|
/**
|
|
* Tokenizes a regular expression (that is currently a string)
|
|
* @param {string} regexpStr String of regular expression to be tokenized
|
|
*
|
|
* @returns {Root}
|
|
*/
|
|
export declare const tokenizer: (regexpStr: string) => Root;
|