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

32 lines
469 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;
}