23 lines
603 B
TypeScript
23 lines
603 B
TypeScript
import { MDXRemoteSerializeResult } from "next-mdx-remote";
|
|
|
|
export type PagePropsType = {
|
|
blogPosts?: DSQL_TBENME_BLOG_POSTS[] | null;
|
|
blogPost?: DSQL_TBENME_BLOG_POSTS | null;
|
|
mdxSource?: MDXRemoteSerializeResult<any, any> | null;
|
|
};
|
|
|
|
export type DSQL_TBENME_BLOG_POSTS = {
|
|
id?: number;
|
|
title?: string;
|
|
slug?: string;
|
|
excerpt?: string;
|
|
body?: string;
|
|
metadata?: string;
|
|
date_created?: string;
|
|
date_created_code?: number;
|
|
date_created_timestamp?: string;
|
|
date_updated?: string;
|
|
date_updated_code?: number;
|
|
date_updated_timestamp?: string;
|
|
};
|