desktop_task_schedule/code/web/task_schedule/shims-vue.d.ts

16 lines
354 B
TypeScript
Raw Normal View History

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