mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-03-01 12:44:37 +00:00
9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue-demi'
|
|
|
|
const component: DefineComponent<object, object, unknown>
|
|
export default component
|
|
}
|