12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
|
declare module '*.vue' {
|
||
|
import { ComponentOptions } from 'vue';
|
||
|
const componentOptions: ComponentOptions;
|
||
|
export default componentOptions;
|
||
|
}
|
||
|
|
||
|
interface ImportMetaEnv {}
|
||
|
|
||
|
interface ImportMeta {
|
||
|
readonly env: ImportMetaEnv;
|
||
|
}
|