frontend
    Preparing search index...

    Stores data and metadata about a user field. Used for front-end rendering.

    Title of the field.

    Data contained in the field.

    Ability for user to edit the field.

    interface UserField {
        data: string;
        editable: boolean;
        title: string;
    }
    Index

    Properties

    Properties

    data: string
    editable: boolean
    title: string