mapbiz
    Preparing search index...

    Interface Article

    Сериализация статьи

    interface Article {
        category: string;
        image?: string;
        next_slug: string;
        only_seo?: boolean;
        previose_slug: string;
        sections: readonly ArticleSection[];
        seo_description?: null | string;
        seo_keywords?: null | string;
        seo_title?: null | string;
        short_description: string;
        slug: string;
        text?: string;
        title: string;
    }
    Index

    Properties

    category: string
    image?: string
    next_slug: string
    only_seo?: boolean
    previose_slug: string
    sections: readonly ArticleSection[]
    seo_description?: null | string

    2500

    seo_keywords?: null | string

    250

    seo_title?: null | string

    250

    short_description: string
    slug: string

    500

    ^[-a-zA-Z0-9_]+$

    text?: string
    title: string

    500