omni-tools/src/pages/tools/string/repeat/meta.ts
2025-07-22 19:47:09 +01:00

17 lines
458 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('string', {
path: 'repeat',
icon: 'material-symbols-light:replay',
keywords: ['text', 'repeat'],
component: lazy(() => import('./index')),
i18n: {
name: 'string:repeat.title',
description: 'string:repeat.description',
shortDescription: 'string:repeat.shortDescription',
userTypes: ['generalUsers', 'developers']
}
});