12345 |
- import { Base } from './base';
- export declare const wrap: (input: string | Base) => string;
- export declare const concat: (...inputs: (string | Base)[]) => string;
- export declare const optional: (input: string | Base) => string;
- export declare const repeat: (input: string | Base, count: number, max?: number | undefined) => string;
|