Interface MomentParsingFlags

interface MomentParsingFlags {
    charsLeftOver: number;
    empty: boolean;
    invalidFormat: boolean;
    invalidMonth: null | string;
    iso: boolean;
    meridiem: null | string;
    nullInput: boolean;
    overflow: number;
    parsedDateParts: any[];
    unusedInput: string[];
    unusedTokens: string[];
    userInvalidated: boolean;
}

Properties

charsLeftOver: number
empty: boolean
invalidFormat: boolean
invalidMonth: null | string
iso: boolean
meridiem: null | string
nullInput: boolean
overflow: number
parsedDateParts: any[]
unusedInput: string[]
unusedTokens: string[]
userInvalidated: boolean