mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 14:09:31 +02:00
13 lines
360 B
TypeScript
13 lines
360 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
// import image from '@assets/text.png';
|
|
|
|
export const tool = defineTool('string', {
|
|
name: 'Extract substring',
|
|
path: 'extract-substring',
|
|
// image,
|
|
description: '',
|
|
shortDescription: '',
|
|
keywords: ['extract', 'substring'],
|
|
component: lazy(() => import('./index'))
|
|
}); |