mirror of
https://github.com/Xevion/the-office.git
synced 2026-01-31 10:26:21 -06:00
8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue';
|
|
const component: DefineComponent<Record<string, unknown>, Record<string, unknown>, unknown>;
|
|
export default component;
|
|
}
|