24 lines
450 B
TypeScript
24 lines
450 B
TypeScript
export interface PostData {
|
|
ID: string;
|
|
post_author: string;
|
|
post_name: string;
|
|
post_title: string;
|
|
post_type: string;
|
|
post_excerpt: string;
|
|
post_date: string;
|
|
post_date_gmt: string;
|
|
post_modified: string;
|
|
post_content: string;
|
|
}
|
|
|
|
export interface PagePayload {
|
|
page: number;
|
|
}
|
|
|
|
export interface CarouselSlide {
|
|
id: number
|
|
title?: string
|
|
description?: string
|
|
src: string
|
|
href?: string
|
|
} |