rgex
Version:
A powerful, chainable regex builder platform with comprehensive validation utilities
18 lines • 691 B
TypeScript
/**
* @fileoverview Core RGex Entry Point - Exports only the RGex class and essential types for minimal bundle size
* @module Core
* @category Core
* @group RGex Builder
* @author duongnguyen321 - https://duonguyen.site
*/
export type { RegexBuilderOptions } from './types/index.js';
export { RGex } from './src/core/RGex.js';
export { RGEX_CONFIG } from './src/config/index.js';
import { RGex } from './src/core/RGex.js';
import type { RegexBuilderOptions } from './types/index.js';
/**
* Factory function to create a new `RGex` instance.
*/
export declare function rgex(pattern?: string, options?: RegexBuilderOptions): RGex;
export default RGex;
//# sourceMappingURL=core.d.ts.map