2
0
mirror of https://github.com/frappe/books.git synced 2025-01-24 07:38:25 +00:00
books/src/shims-vue.d.ts

7 lines
245 B
TypeScript
Raw Normal View History

2022-01-24 12:49:27 +05:30
declare module '*.vue' {
2022-03-16 17:12:06 +05:30
import type { DefineComponent } from 'vue';
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>;
export default component;
2022-01-24 12:49:27 +05:30
}