mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 15:26:15 -04:00
refactor: renammed Tool.ts to tool.ts
This commit is contained in:
parent
2f61c745f5
commit
ac89490794
25 changed files with 24 additions and 24 deletions
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue