mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-23 07:59:31 +02:00
17 lines
510 B
TypeScript
17 lines
510 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('string', {
|
|
path: 'url-decode-string',
|
|
icon: 'codicon:symbol-string',
|
|
|
|
keywords: ['uppercase'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'string:urlDecode.toolInfo.title',
|
|
description: 'string:urlDecode.toolInfo.description',
|
|
shortDescription: 'string:urlDecode.toolInfo.shortDescription',
|
|
longDescription: 'string:urlDecode.toolInfo.longDescription'
|
|
}
|
|
});
|