feat (string): url decode

This commit is contained in:
Chesterkxng
2025-07-18 17:25:45 +02:00
parent c106489a26
commit 94fdcaef0d
3 changed files with 105 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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'
}
});