16 lines
354 B
TypeScript
Raw Normal View History

2023-03-04 18:05:47 +08:00
/*
* @Author: Kane
* @Date: 2023-03-04 17:23:02
* @LastEditors: Kane
* @FilePath: /task_schedule/shims-vue.d.ts
2023-03-23 23:58:38 +08:00
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
2023-03-04 18:05:47 +08:00
*/
2023-03-23 23:58:38 +08:00
declare module "*.vue"
{
import { type ComponentOptions } from "vue";
2023-03-04 18:05:47 +08:00
const componentOptions: ComponentOptions;
export default componentOptions;
2023-03-23 23:58:38 +08:00
}