mirror of
https://github.com/frappe/books.git
synced 2024-12-22 19:09:01 +00:00
7 lines
245 B
TypeScript
7 lines
245 B
TypeScript
declare module '*.vue' {
|
|
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;
|
|
}
|