jointrashposs/types/router.d.ts

24 lines
518 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;
2023-12-20 11:39:08 +01:00
scrollButton?: false | {
hideFrom?: number;
customPosition?: {
x?: string;
y?: string;
};
customClass?: string;
};
2023-12-30 05:29:37 +01:00
/** @private */
__isDocsIndexPage?: boolean;
2023-07-08 10:36:02 +02:00
}
}