interface FieldDef {
    codec: Codec<any>;
    name: string;
    optional?: true;
    packed?: true;
    repeats?: true;
}

Properties

codec: Codec<any>
name: string
optional?: true
packed?: true
repeats?: true