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

17 lines
550 B
TypeScript

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