2
0
mirror of https://github.com/frappe/books.git synced 2025-01-24 07:38:25 +00:00
books/src/shims-vue-custom.d.ts
2022-12-08 15:19:22 +05:30

11 lines
264 B
TypeScript

import { Fyo } from 'fyo';
import { TranslationLiteral } from 'fyo/utils/translation';
declare module 'vue' {
interface ComponentCustomProperties {
t: (...args: TranslationLiteral[]) => string;
fyo: Fyo;
platform: 'Windows' | 'Linux' | 'Mac';
}
}