@claudebernard/types
Version:
A TypeScript library for centralizing common types, interfaces, classes, and enums, particularly for API response types.
21 lines • 547 B
TypeScript
export interface News {
newsId: string;
newsTitle: string;
newsSummary: string;
description: string;
startPublicationDate: string;
endPublicationDate: string;
argument: string;
inProduction: boolean;
numberOfClicks: number;
notification: number;
isNotification: boolean;
labNews: number;
activeLabBanner: boolean;
type: number;
thumbnailPhoto: string;
secondThumbnailPhoto: string;
newsSubject: number;
labelSubjectNews: string;
}
//# sourceMappingURL=news.interface.d.ts.map