Type alias FieldDefinition

FieldDefinition: {
    [key: string]: {
        field: Field<string> | Field<number>;
        name: string;
    };
}

A FieldDefinition represents a definition of a set of fields, where each field has a name and a Field object that can be used to encode/decode the value

Type declaration

  • [key: string]: {
        field: Field<string> | Field<number>;
        name: string;
    }
    • field: Field<string> | Field<number>
    • name: string

Generated using TypeDoc