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