Files
jkhsakha-web/src/types/entities.ts
2026-02-25 17:35:01 +09:00

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
}