Files
omni-tools/src/pages/tools/string/url-decode/meta.ts
2025-07-18 17:25:45 +02:00

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'
}
});