Interface FieldDefinition

interface FieldDefinition {
    alias?: string;
    length?: number;
    name: string;
    trim?: boolean;
    type: string;
}

Properties

alias?: string
length?: number
name: string
trim?: boolean
type: string