mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 08:53:49 +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;
|
|
}
|
|
} |