jointrashposs/types/router.d.ts
kakkokari-gtyih 8e52c51c49 wip
2023-07-08 17:36:02 +09:00

13 lines
245 B
TypeScript

import 'vue-router';
import type { Thing } from 'schema-dts';
export {};
declare module 'vue-router' {
interface RouteMeta {
description?: string;
title?: string;
graph?: Thing[];
thumbnail?: string;
}
}