mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-21 21:24:05 +02:00
8 lines
No EOL
277 B
TypeScript
8 lines
No EOL
277 B
TypeScript
import { HistoryItem, ContentType } from './types';
|
|
|
|
declare module '#app' {
|
|
interface NuxtApp {
|
|
$history: ReturnType<typeof import('../plugins/history')>['provide']['history'];
|
|
$settings: ReturnType<typeof import('../plugins/settings')>['provide']['settings'];
|
|
}
|
|
} |