37 lines
685 B
TypeScript
37 lines
685 B
TypeScript
/*Revenue Projects*/
|
|
type RevenueProjects={
|
|
img: string;
|
|
leadname: string;
|
|
designation: string;
|
|
projectname: string;
|
|
statuscolor: string;
|
|
statustext: string;
|
|
money: string;
|
|
};
|
|
|
|
// Daily Activities
|
|
type DailyActivities = {
|
|
title: string;
|
|
subtitle: string;
|
|
textcolor: string;
|
|
boldtext: boolean;
|
|
line: boolean;
|
|
link: string;
|
|
url: string;
|
|
};
|
|
|
|
/*Card types*/
|
|
type BlogCards = {
|
|
avatar: string;
|
|
coveravatar: string;
|
|
read: string;
|
|
title: string;
|
|
link: string;
|
|
category: string;
|
|
name: string;
|
|
view: string;
|
|
comments: string;
|
|
time: string;
|
|
};
|
|
|
|
export type{RevenueProjects,DailyActivities,BlogCards} |