2
0
mirror of https://github.com/frappe/books.git synced 2025-01-09 01:44:15 +00:00
books/src/shims-vue.d.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
245 B
TypeScript
Raw Normal View History

2022-01-24 07:19:27 +00:00
declare module '*.vue' {
2022-03-16 11:42:06 +00:00
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 07:19:27 +00:00
}