| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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,
- };
|