jointrashposs/types/router.d.ts
kakkokari-gtyih 2ee78f1faf fix proseA
2023-12-30 13:29:37 +09:00

24 lines
518 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;
};
/** @private */
__isDocsIndexPage?: boolean;
}
}