diff options
author | 2022-06-01 23:52:21 +0200 | |
---|---|---|
committer | 2022-06-02 00:11:49 +0200 | |
commit | 11720e6cdefc1da4bdd638415813b609840f8462 (patch) | |
tree | b647d77a2fe3cec6af3b81bf02ceb17e636d80b7 /src/tools/json-viewer/index.ts | |
parent | ac89490794ee3c1c033859ffea31a962a13cc96d (diff) | |
download | it-tools-11720e6cdefc1da4bdd638415813b609840f8462.tar.gz it-tools-11720e6cdefc1da4bdd638415813b609840f8462.tar.zst it-tools-11720e6cdefc1da4bdd638415813b609840f8462.zip |
feat(tools): new badge for recently created tools
Diffstat (limited to 'src/tools/json-viewer/index.ts')
-rw-r--r-- | src/tools/json-viewer/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/json-viewer/index.ts b/src/tools/json-viewer/index.ts index 67a17dc..23f1b8a 100644 --- a/src/tools/json-viewer/index.ts +++ b/src/tools/json-viewer/index.ts @@ -1,11 +1,11 @@ import { Braces } from '@vicons/tabler'; -import type { ITool } from '../tool'; +import { defineTool } from '../tool'; -export const tool: ITool = { +export const tool = defineTool({ name: 'JSON viewer', path: '/json-viewer', description: 'Prettify JSON string to a human friendly readable format.', keywords: ['json', 'viewer', 'prettify', 'format'], component: () => import('./json-viewer.vue'), icon: Braces, -}; +}); |