16 lines
378 B
TypeScript
16 lines
378 B
TypeScript
export interface DashboardLeadCountItem {
|
|
id: string;
|
|
name: string;
|
|
statusorder: number | string;
|
|
color: string;
|
|
isdefault: number | string;
|
|
count: number;
|
|
}
|
|
|
|
export type DashboardLeadCountAction = 'day' | 'week' | 'month' | 'quarter' | 'year';
|
|
|
|
export interface DashboardLeadCountPayload {
|
|
action: DashboardLeadCountAction | string;
|
|
staffid: string | number;
|
|
}
|