diff options
author | 2022-05-25 23:20:51 +0200 | |
---|---|---|
committer | 2022-06-02 00:11:49 +0200 | |
commit | ac89490794ee3c1c033859ffea31a962a13cc96d (patch) | |
tree | afc6a7af501b4db025ed85cf0b06205f5f2c80bd /src | |
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')
25 files changed, 24 insertions, 24 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', diff --git a/src/tools/bcrypt/index.ts b/src/tools/bcrypt/index.ts index 7d91740..ad0f8d4 100644 --- a/src/tools/bcrypt/index.ts +++ b/src/tools/bcrypt/index.ts @@ -1,5 +1,5 @@ import { LockSquare } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Bcrypt', diff --git a/src/tools/bip39-generator/index.ts b/src/tools/bip39-generator/index.ts index 8f581d9..99bf045 100644 --- a/src/tools/bip39-generator/index.ts +++ b/src/tools/bip39-generator/index.ts @@ -1,5 +1,5 @@ import { AlignJustified } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'BIP39 passphrase generator', diff --git a/src/tools/case-converter/index.ts b/src/tools/case-converter/index.ts index 81293ad..810ce9a 100644 --- a/src/tools/case-converter/index.ts +++ b/src/tools/case-converter/index.ts @@ -1,5 +1,5 @@ import { LetterCaseToggle } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Case converter', diff --git a/src/tools/color-converter/index.ts b/src/tools/color-converter/index.ts index e42ab37..024c95c 100644 --- a/src/tools/color-converter/index.ts +++ b/src/tools/color-converter/index.ts @@ -1,5 +1,5 @@ import { Palette } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Color converter', diff --git a/src/tools/crontab-generator/index.ts b/src/tools/crontab-generator/index.ts index f117b33..08bba85 100644 --- a/src/tools/crontab-generator/index.ts +++ b/src/tools/crontab-generator/index.ts @@ -1,5 +1,5 @@ import { Alarm } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Crontab generator', diff --git a/src/tools/date-time-converter/index.ts b/src/tools/date-time-converter/index.ts index 81f7039..989703e 100644 --- a/src/tools/date-time-converter/index.ts +++ b/src/tools/date-time-converter/index.ts @@ -1,5 +1,5 @@ import { Calendar } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Date-time converter', diff --git a/src/tools/device-information/index.ts b/src/tools/device-information/index.ts index adef009..2796195 100644 --- a/src/tools/device-information/index.ts +++ b/src/tools/device-information/index.ts @@ -1,5 +1,5 @@ import { DeviceDesktop } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Device information', diff --git a/src/tools/encryption/index.ts b/src/tools/encryption/index.ts index 2bb7c74..468a7fb 100644 --- a/src/tools/encryption/index.ts +++ b/src/tools/encryption/index.ts @@ -1,5 +1,5 @@ import { Lock } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Encrypt / decrypt text', diff --git a/src/tools/git-memo/index.ts b/src/tools/git-memo/index.ts index da83c51..1b027b7 100644 --- a/src/tools/git-memo/index.ts +++ b/src/tools/git-memo/index.ts @@ -1,5 +1,5 @@ import { BrandGit } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Git cheatsheet', diff --git a/src/tools/hash-text/index.ts b/src/tools/hash-text/index.ts index 0b4b336..0cbe2b8 100644 --- a/src/tools/hash-text/index.ts +++ b/src/tools/hash-text/index.ts @@ -1,5 +1,5 @@ import { EyeOff } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Hash text', diff --git a/src/tools/html-entities/index.ts b/src/tools/html-entities/index.ts index d727196..5d3b850 100644 --- a/src/tools/html-entities/index.ts +++ b/src/tools/html-entities/index.ts @@ -1,5 +1,5 @@ import { Code } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Escape html entities', diff --git a/src/tools/index.ts b/src/tools/index.ts index 745b7d6..90e217c 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -1,5 +1,5 @@ import { LockOpen } from '@vicons/tabler'; -import type { ToolCategory } from './Tool'; +import type { ToolCategory } from './tool'; import { tool as jsonViewer } from './json-viewer'; import { tool as htmlEntities } from './html-entities'; diff --git a/src/tools/integer-base-converter/index.ts b/src/tools/integer-base-converter/index.ts index 16ae623..7cdfd4d 100644 --- a/src/tools/integer-base-converter/index.ts +++ b/src/tools/integer-base-converter/index.ts @@ -1,5 +1,5 @@ import { ArrowsLeftRight } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Integer base converter', diff --git a/src/tools/json-viewer/index.ts b/src/tools/json-viewer/index.ts index 1911f61..67a17dc 100644 --- a/src/tools/json-viewer/index.ts +++ b/src/tools/json-viewer/index.ts @@ -1,5 +1,5 @@ import { Braces } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'JSON viewer', diff --git a/src/tools/lorem-ipsum-generator/index.ts b/src/tools/lorem-ipsum-generator/index.ts index e7c40d3..b3d5a96 100644 --- a/src/tools/lorem-ipsum-generator/index.ts +++ b/src/tools/lorem-ipsum-generator/index.ts @@ -1,5 +1,5 @@ import { AlignJustified } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Lorem ipsum generator', diff --git a/src/tools/qr-code-generator/index.ts b/src/tools/qr-code-generator/index.ts index 3026e16..6bd9163 100644 --- a/src/tools/qr-code-generator/index.ts +++ b/src/tools/qr-code-generator/index.ts @@ -1,5 +1,5 @@ import { Qrcode } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'QR Code generator', diff --git a/src/tools/random-port-generator/index.ts b/src/tools/random-port-generator/index.ts index 5957bda..1373c41 100644 --- a/src/tools/random-port-generator/index.ts +++ b/src/tools/random-port-generator/index.ts @@ -1,5 +1,5 @@ import { Server } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Random port generator', diff --git a/src/tools/roman-numeral-converter/index.ts b/src/tools/roman-numeral-converter/index.ts index ecaf57e..bea4dec 100644 --- a/src/tools/roman-numeral-converter/index.ts +++ b/src/tools/roman-numeral-converter/index.ts @@ -1,5 +1,5 @@ import { LetterX } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Roman numeral converter', diff --git a/src/tools/text-statistics/index.ts b/src/tools/text-statistics/index.ts index bc92be1..82d49f1 100644 --- a/src/tools/text-statistics/index.ts +++ b/src/tools/text-statistics/index.ts @@ -1,5 +1,5 @@ import { FileText } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Text statistics', diff --git a/src/tools/token-generator/index.ts b/src/tools/token-generator/index.ts index 3bbd254..1a9ab67 100644 --- a/src/tools/token-generator/index.ts +++ b/src/tools/token-generator/index.ts @@ -1,5 +1,5 @@ import { ArrowsShuffle } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Token generator', diff --git a/src/tools/Tool.ts b/src/tools/tool.ts index 4cd462c..4cd462c 100644 --- a/src/tools/Tool.ts +++ b/src/tools/tool.ts diff --git a/src/tools/url-encoder/index.ts b/src/tools/url-encoder/index.ts index a748124..ccd4219 100644 --- a/src/tools/url-encoder/index.ts +++ b/src/tools/url-encoder/index.ts @@ -1,5 +1,5 @@ import { Link } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Encode/decode url formatted strings', diff --git a/src/tools/url-parser/index.ts b/src/tools/url-parser/index.ts index 3119fdc..548be39 100644 --- a/src/tools/url-parser/index.ts +++ b/src/tools/url-parser/index.ts @@ -1,5 +1,5 @@ import { Unlink } from '@vicons/tabler'; -import type { ITool } from './../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'Url parser', diff --git a/src/tools/uuid-generator/index.ts b/src/tools/uuid-generator/index.ts index 269ed1c..3bd1025 100644 --- a/src/tools/uuid-generator/index.ts +++ b/src/tools/uuid-generator/index.ts @@ -1,5 +1,5 @@ import { Fingerprint } from '@vicons/tabler'; -import type { ITool } from '../Tool'; +import type { ITool } from '../tool'; export const tool: ITool = { name: 'UUIDs v4 generator', |