mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-09 09:55:07 +05:30
17 lines
550 B
TypeScript
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']
|
|
}
|
|
});
|