diff options
author | 2022-05-25 23:20:51 +0200 | |
---|---|---|
committer | 2022-06-02 00:11:49 +0200 | |
commit | ac89490794ee3c1c033859ffea31a962a13cc96d (patch) | |
tree | afc6a7af501b4db025ed85cf0b06205f5f2c80bd /src/tools/base64-converter/index.ts | |
parent | 2f61c745f57962cf3bb9e2c1db4a3176df042808 (diff) | |
download | it-tools-ac89490794ee3c1c033859ffea31a962a13cc96d.tar.gz it-tools-ac89490794ee3c1c033859ffea31a962a13cc96d.tar.zst it-tools-ac89490794ee3c1c033859ffea31a962a13cc96d.zip |
refactor: renammed Tool.ts to tool.ts
Diffstat (limited to 'src/tools/base64-converter/index.ts')
-rw-r--r-- | src/tools/base64-converter/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/base64-converter/index.ts b/src/tools/base64-converter/index.ts index 702bd40..4d9b1ec 100644 --- a/src/tools/base64-converter/index.ts +++ b/src/tools/base64-converter/index.ts @@ -1,5 +1,5 @@ import { FileDigit } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Base64 converter', |