9 lines
306 B
TypeScript
9 lines
306 B
TypeScript
import { MDXRemoteSerializeResult } from "next-mdx-remote";
|
|
import { DSQL_TBEN_ME_BLOG_POSTS } from "./types/dsql";
|
|
|
|
export type PagePropsType = {
|
|
blogPosts?: DSQL_TBEN_ME_BLOG_POSTS[] | null;
|
|
blogPost?: DSQL_TBEN_ME_BLOG_POSTS | null;
|
|
mdxSource?: MDXRemoteSerializeResult<any, any> | null;
|
|
};
|