2
0
mirror of https://github.com/frappe/books.git synced 2024-11-12 16:36:27 +00:00

incr: add platform field

This commit is contained in:
18alantom 2022-03-18 14:51:12 +05:30 committed by Alan
parent 591b02ef9e
commit 88f44692d6

View File

@ -19,11 +19,13 @@ export interface Locale {
export type Count = Partial<{
[key in DoctypeName]: number;
}>;
export type Platform = 'Windows' | 'Mac' | 'Linux';
export interface Telemetry {
deviceId: UniqueId;
instanceId: UniqueId;
openTime: Timestamp;
platform?: Platform;
closeTime: Timestamp;
timeline?: InteractionEvent[];
counts?: Count;