system-copyright-react/src/interfaces/card/ICardProj.ts

50 lines
737 B
TypeScript
Raw Normal View History

2024-03-15 18:18:29 +08:00
export interface IProjEdit {
title: string;
desc?: string;
handleEdit(): void;
}
export interface IProjLoading {
title: string;
desc?: string;
}
export interface IProjResult {
title: string;
isSuccess: boolean;
handleFeedback?(): void;
}
export interface IProjDownload {
title: string;
desc: string;
handleDownload(): void;
}
export interface IProjJump {
title: string;
desc: string;
handleJump(): void;
2024-03-17 18:36:00 +08:00
}
export enum AgentMedalEnum {
GOLD,
SILVER,
BRONZE,
NORMAL
}
export interface IAgent {
logo?: string;
name: string;
medal?: AgentMedalEnum;
desc: string;
certificateImg: string;
selected?: boolean;
handleSelect(): void;
2024-03-15 18:18:29 +08:00
}