@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Type Alias DateFormat

    DateFormat:
        | "yyyy-MM-dd"
        | "dd/MM/yyyy"
        | "MM/dd/yyyy"
        | "dd.MM.yyyy"
        | "dd-MM-yyyy"
        | "yyyy/MM/dd"

    Predefined date format strings.

    Each format describes how day (dd), month (MM), and four-digit year (yyyy) are arranged plus the separator character used between them.

    Format Example Region
    yyyy-MM-dd 2026-03-15 ISO 8601 / international
    dd/MM/yyyy 15/03/2026 Europe, South America, etc.
    MM/dd/yyyy 03/15/2026 United States
    dd.MM.yyyy 15.03.2026 Germany, Switzerland
    dd-MM-yyyy 15-03-2026 Netherlands, various
    yyyy/MM/dd 2026/03/15 Japan, China, Korea