Files
omni-tools/src/pages/tools/string/repeat/initialValues.ts

12 lines
217 B
TypeScript
Raw Normal View History

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