vue-docgen-api
Version:
Toolbox to extract information from Vue component files for documentation generation purposes.
12 lines (11 loc) • 357 B
TypeScript
/**
* matching nested constructs
* thanks Steve Levithan
* @see http://blog.stevenlevithan.com/archives/javascript-match-recursive-regexp
* @param str
* @param left
* @param right
* @param flags
*/
export declare function matchRecursiveRegExp(str: string, left: string, right: string, flags?: string): string[];
export default matchRecursiveRegExp;