Roqueform
    Preparing search index...

    Interface AnnotationsMixin<Annotations>

    The mixin added to fields by the annotationsPlugin.

    interface AnnotationsMixin<Annotations extends object> {
        annotations: Annotations;
        annotate(
            patch: Partial<Annotations> | ((field: never) => Partial<Annotations>),
            options?: AnnotateOptions,
        ): void;
    }

    Type Parameters

    • Annotations extends object

      Annotations associated with fields.

    Index

    Properties

    Methods

    Properties

    annotations: Annotations

    Annotations associated with this field.

    Methods