mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-22 15:56:15 -04:00
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
import {RouteConfig} from '@nuxt/types/config/router';
|
|
|
|
interface ToolConfig {
|
|
title: string;
|
|
description: string;
|
|
icon: string;
|
|
keywords: string[];
|
|
}
|
|
|
|
type ToolConfigMethod = () => ToolConfig;
|
|
type ToolRouteConfig = RouteConfig & {config: ToolConfig}
|
|
|
|
export {ToolConfig, ToolConfigMethod, ToolRouteConfig}
|