@stacksjs/ts-validation
Version:
A simple TypeScript starter kit using Bun.
9 lines • 314 B
TypeScript
/**
* Build RegExp object from an array
* of multiple/multi-line regexp parts
*
* @param parts - Array of string patterns that make up the regex
* @param flags - Regular expression flags
* @returns A compiled RegExp object
*/
export declare function multilineRegexp(parts: string[], flags?: string): RegExp;