mirror of
https://github.com/frappe/books.git
synced 2025-01-24 07:38:25 +00:00
11 lines
264 B
TypeScript
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';
|
|
}
|
|
}
|