16 lines
354 B
TypeScript
16 lines
354 B
TypeScript
/*
|
|
* @Author: Kane
|
|
* @Date: 2023-03-04 17:23:02
|
|
* @LastEditors: Kane
|
|
* @FilePath: /task_schedule/shims-vue.d.ts
|
|
* @Description:
|
|
*
|
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
|
*/
|
|
declare module "*.vue"
|
|
{
|
|
import { type ComponentOptions } from "vue";
|
|
const componentOptions: ComponentOptions;
|
|
export default componentOptions;
|
|
}
|