mirror of
https://github.com/langyuxiansheng/vue-aliplayer-v2.git
synced 2026-05-28 07:20:21 +08:00
9 lines
242 B
TypeScript
9 lines
242 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;
|
|
}
|