forked from sheepzh/time-tracker-4-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalysis.ts
More file actions
44 lines (40 loc) · 914 Bytes
/
analysis.ts
File metadata and controls
44 lines (40 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**
* Copyright (c) 2023 Hengyang Zhang
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
import resource from './analysis-resource.json'
export type AnalysisMessage = {
target: {
site: string
cate: string
}
common: {
focusTotal: string
visitTotal: string
merged: string
virtual: string
hostPlaceholder: string
emptyDesc: string
}
summary: {
title: string
day: string
firstDay: string
calendarTitle: string
}
trend: {
title: string
activeDay: string
totalDay: string
maxFocus: string
averageFocus: string
maxVisit: string
averageVisit: string
focusTitle: string
visitTitle: string
}
}
const _default: Messages<AnalysisMessage> = resource
export default _default