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
45
46
47
48
| import type { Component } from 'vue';
|
| interface AnalysisOverviewItem {
| icon: Component | string;
| title: string;
| totalTitle: string;
| totalValue: number;
| value: number;
| }
|
| interface WorkbenchProjectItem {
| color?: string;
| content: string;
| date: string;
| group: string;
| icon: Component | string;
| title: string;
| url?: string;
| }
|
| interface WorkbenchTrendItem {
| avatar: string;
| content: string;
| date: string;
| title: string;
| }
|
| interface WorkbenchTodoItem {
| completed: boolean;
| content: string;
| date: string;
| title: string;
| }
|
| interface WorkbenchQuickNavItem {
| color?: string;
| icon: Component | string;
| title: string;
| url?: string;
| }
|
| export type {
| AnalysisOverviewItem,
| WorkbenchProjectItem,
| WorkbenchQuickNavItem,
| WorkbenchTodoItem,
| WorkbenchTrendItem,
| };
|
|