EditorInterfaceProps: {
    controls?: Control[];
    editor?: Editor;
    editorLayout?: FieldGroupItem[];
    editors?: Editor[];
    groupControls?: GroupControl[];
    sidebar?: SidebarItem[];
    sys: MetaSysProps & {
        contentType: {
            sys: MetaLinkProps;
        };
        environment: {
            sys: MetaLinkProps;
        };
        space: {
            sys: MetaLinkProps;
        };
    };
}

Type declaration

  • Optional controls?: Control[]

    Array of fields and their associated widgetId

  • Optional editor?: Editor

    Legacy singular editor override

  • Optional editorLayout?: FieldGroupItem[]

    Array of editor layout field groups

  • Optional editors?: Editor[]

    Array of editors. Defaults will be used if property is missing.

  • Optional groupControls?: GroupControl[]

    Array of field groups and their associated widgetId

  • Optional sidebar?: SidebarItem[]

    Array of sidebar widgets. Defaults will be used if property is missing.

  • sys: MetaSysProps & {
        contentType: {
            sys: MetaLinkProps;
        };
        environment: {
            sys: MetaLinkProps;
        };
        space: {
            sys: MetaLinkProps;
        };
    }