it-tools/src/tools/phone-parser-and-formatter/index.ts

26 lines
654 B
TypeScript
Raw Normal View History

import { IconPhone } from '@tabler/icons-vue';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.phone-parser-and-formatter.title'),
path: '/phone-parser-and-formatter',
description: translate('tools.phone-parser-and-formatter.description'),
keywords: [
'phone',
'parser',
'formatter',
'validate',
'format',
'number',
'telephone',
'mobile',
'cell',
'international',
'national',
],
component: () => import('./phone-parser-and-formatter.vue'),
icon: IconPhone,
createdAt: new Date('2023-05-01'),
});