Interface IPostCardProps

    Post card interface

    interface IPostCardProps {
        author: {
            name: string;
            url: string;
        };
        date: string;
        description: string;
        image: string;
        keywords: string[];
        postKey: string;
        title: string;
    }

    Properties

    author: {
        name: string;
        url: string;
    }

    Type declaration

    • name: string
    • url: string
    date: string
    description: string
    image: string
    keywords: string[]
    postKey: string
    title: string

    Generated using TypeDoc and TypeDoc Airthium Plugin