jointrashposs/types/router.d.ts
2023-12-20 19:39:08 +09:00

21 lines
456 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;
scrollButton?: false | {
hideFrom?: number;
customPosition?: {
x?: string;
y?: string;
};
customClass?: string;
};
}
}