Stone.js API
    Preparing search index...

    Interface OpenGraphOptions

    Open Graph options. Emitted as property="og:*" meta tags.

    interface OpenGraphOptions {
        description?: string;
        image?:
            | string
            | {
                alt?: string;
                height?: number;
                type?: string;
                url: string;
                width?: number;
            };
        locale?: string;
        siteName?: string;
        title?: string;
        type?: string;
        url?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    description?: string
    image?:
        | string
        | {
            alt?: string;
            height?: number;
            type?: string;
            url: string;
            width?: number;
        }
    locale?: string
    siteName?: string
    title?: string
    type?: string
    url?: string