Files
omni-tools/src/pages/tools/string/repeat/initialValues.ts
EugSh eb9e3cbdf9 feat: add text repeat tool
- Added text repeat tool to repeat input text multiple times with optional delimiter.
- Included functionality for custom repetition amounts and delimiters.
2025-03-07 15:26:04 +03:00

12 lines
217 B
TypeScript

export type InitialValuesType = {
textToRepeat: string;
repeatAmount: string;
delimiter: string;
};
export const initialValues: InitialValuesType = {
textToRepeat: '',
repeatAmount: '5',
delimiter: ''
};