jointrashposs/types/router.d.ts

13 lines
245 B
TypeScript
Raw Normal View History

2023-07-08 10:36:02 +02:00
import 'vue-router';
import type { Thing } from 'schema-dts';
export {};
declare module 'vue-router' {
interface RouteMeta {
description?: string;
title?: string;
graph?: Thing[];
thumbnail?: string;
}
}