mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 00:43:50 +01:00
24 lines
518 B
TypeScript
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;
|
|
}
|
|
} |