This commit is contained in:
2026-02-11 22:30:04 +09:00
parent be1f627457
commit 30835f78d4
75 changed files with 4878 additions and 143 deletions

15
src/types/entities.ts Normal file
View File

@@ -0,0 +1,15 @@
export interface PostData {
ID: string;
post_author: string;
post_name: string;
post_title: string;
post_excerpt: string;
post_date: string;
post_date_gmt: string;
post_modified: string;
post_content: string;
}
export interface PagePayload {
page: number;
}