event type added
This commit is contained in:
parent
23e20c7657
commit
5f4cd3dc55
|
|
@ -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;
|
||||
}
|
||||
Loading…
Reference in New Issue