Interface IProps

    Props

    interface IProps {
        author: {
            name: string;
            url: string;
        };
        children: any;
        date: string;
        image: string;
        keywords: string[];
        references?: IReference[];
        title: string;
        version: string;
    }

    Properties

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

    Type declaration

    • name: string
    • url: string
    children: any
    date: string
    image: string
    keywords: string[]
    references?: IReference[]
    title: string
    version: string

    Generated using TypeDoc and TypeDoc Airthium Plugin