Files
fastify-beginner-guide/node_modules/ret/dist/tokenizer.d.ts

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;