mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-20 06:29:32 +02:00
17 lines
503 B
TypeScript
17 lines
503 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'
|
|
}
|
|
});
|