convnum
    Preparing search index...

    Interface DateInterpretation

    Individual interpretation of a date string

    interface DateInterpretation {
        days?: number;
        format: string;
        months?: number;
        timestamp: number;
    }
    Index

    Properties

    days?: number

    Number of days after 1970-01-01 (only present for dates with day components)

    format: string

    Format string for this interpretation (e.g., "Y-M2-D2")

    months?: number

    Number of months after 1970-01 (only present for year-month only dates)

    timestamp: number

    Unix timestamp in milliseconds for this interpretation