Files
dax-pay-h5/types/modules.d.ts
2024-02-10 21:52:30 +08:00

8 lines
184 B
TypeScript

/// <reference types="vite/client" />
declare module '*.vue' {
import { DefineComponent } from 'vue';
const Component: DefineComponent<{}, {}, any>;
export default Component;
}