mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 07:16: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 { FileDigit } from '@vicons/tabler';
|
||||||
import type { ITool } from './../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Base64 converter',
|
name: 'Base64 converter',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { LockSquare } from '@vicons/tabler';
|
import { LockSquare } from '@vicons/tabler';
|
||||||
import type { ITool } from './../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Bcrypt',
|
name: 'Bcrypt',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { AlignJustified } from '@vicons/tabler';
|
import { AlignJustified } from '@vicons/tabler';
|
||||||
import type { ITool } from '../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'BIP39 passphrase generator',
|
name: 'BIP39 passphrase generator',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { LetterCaseToggle } from '@vicons/tabler';
|
import { LetterCaseToggle } from '@vicons/tabler';
|
||||||
import type { ITool } from './../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Case converter',
|
name: 'Case converter',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Palette } from '@vicons/tabler';
|
import { Palette } from '@vicons/tabler';
|
||||||
import type { ITool } from './../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Color converter',
|
name: 'Color converter',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Alarm } from '@vicons/tabler';
|
import { Alarm } from '@vicons/tabler';
|
||||||
import type { ITool } from './../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Crontab generator',
|
name: 'Crontab generator',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Calendar } from '@vicons/tabler';
|
import { Calendar } from '@vicons/tabler';
|
||||||
import type { ITool } from '../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Date-time converter',
|
name: 'Date-time converter',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { DeviceDesktop } from '@vicons/tabler';
|
import { DeviceDesktop } from '@vicons/tabler';
|
||||||
import type { ITool } from './../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Device information',
|
name: 'Device information',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Lock } from '@vicons/tabler';
|
import { Lock } from '@vicons/tabler';
|
||||||
import type { ITool } from '../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Encrypt / decrypt text',
|
name: 'Encrypt / decrypt text',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { BrandGit } from '@vicons/tabler';
|
import { BrandGit } from '@vicons/tabler';
|
||||||
import type { ITool } from '../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Git cheatsheet',
|
name: 'Git cheatsheet',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { EyeOff } from '@vicons/tabler';
|
import { EyeOff } from '@vicons/tabler';
|
||||||
import type { ITool } from '../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Hash text',
|
name: 'Hash text',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Code } from '@vicons/tabler';
|
import { Code } from '@vicons/tabler';
|
||||||
import type { ITool } from './../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Escape html entities',
|
name: 'Escape html entities',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { LockOpen } from '@vicons/tabler';
|
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 jsonViewer } from './json-viewer';
|
||||||
import { tool as htmlEntities } from './html-entities';
|
import { tool as htmlEntities } from './html-entities';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { ArrowsLeftRight } from '@vicons/tabler';
|
import { ArrowsLeftRight } from '@vicons/tabler';
|
||||||
import type { ITool } from '../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Integer base converter',
|
name: 'Integer base converter',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Braces } from '@vicons/tabler';
|
import { Braces } from '@vicons/tabler';
|
||||||
import type { ITool } from './../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'JSON viewer',
|
name: 'JSON viewer',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { AlignJustified } from '@vicons/tabler';
|
import { AlignJustified } from '@vicons/tabler';
|
||||||
import type { ITool } from '../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Lorem ipsum generator',
|
name: 'Lorem ipsum generator',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Qrcode } from '@vicons/tabler';
|
import { Qrcode } from '@vicons/tabler';
|
||||||
import type { ITool } from './../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'QR Code generator',
|
name: 'QR Code generator',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Server } from '@vicons/tabler';
|
import { Server } from '@vicons/tabler';
|
||||||
import type { ITool } from '../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Random port generator',
|
name: 'Random port generator',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { LetterX } from '@vicons/tabler';
|
import { LetterX } from '@vicons/tabler';
|
||||||
import type { ITool } from '../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Roman numeral converter',
|
name: 'Roman numeral converter',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { FileText } from '@vicons/tabler';
|
import { FileText } from '@vicons/tabler';
|
||||||
import type { ITool } from './../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Text statistics',
|
name: 'Text statistics',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { ArrowsShuffle } from '@vicons/tabler';
|
import { ArrowsShuffle } from '@vicons/tabler';
|
||||||
import type { ITool } from './../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Token generator',
|
name: 'Token generator',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Link } from '@vicons/tabler';
|
import { Link } from '@vicons/tabler';
|
||||||
import type { ITool } from '../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Encode/decode url formatted strings',
|
name: 'Encode/decode url formatted strings',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Unlink } from '@vicons/tabler';
|
import { Unlink } from '@vicons/tabler';
|
||||||
import type { ITool } from './../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'Url parser',
|
name: 'Url parser',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Fingerprint } from '@vicons/tabler';
|
import { Fingerprint } from '@vicons/tabler';
|
||||||
import type { ITool } from '../Tool';
|
import type { ITool } from '../tool';
|
||||||
|
|
||||||
export const tool: ITool = {
|
export const tool: ITool = {
|
||||||
name: 'UUIDs v4 generator',
|
name: 'UUIDs v4 generator',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue