event type added

This commit is contained in:
VividTruthKeeper 2022-08-19 23:44:14 +05:00
parent 23e20c7657
commit 5f4cd3dc55
1 changed files with 16 additions and 0 deletions

16
src/types/events.ts Normal file
View File

@ -0,0 +1,16 @@
export interface eventType {
id: number;
title: string;
excerpt: string;
published_at: string;
featured_images: [
{
id: number;
disk_name: string;
file_name: string;
path: string;
extension: string;
}
];
content_html: string;
}