next.js/examples/cms-sitefinity/interfaces/post.ts
post.ts17 lines246 B
import type Author from "./author";

type PostType = {
  slug: string;
  title: string;
  date: string;
  coverImage: string;
  author: Author;
  excerpt: string;
  ogImage: {
    url: string;
  };
  content: string;
};

export default PostType;
Quest for Codev2.0.0
/
SIGN IN