Variable DefaultFormatsConst

DefaultFormats: {
    ENUMS: {
        AGE: string[];
        DAY_OF_WEEK: string[];
        MONTH: string[];
        NOON: string[];
        SEPARATOR: string[];
        SEVERITY: string[];
    };
    MESSAGE: string;
    TIME: string;
} = ...

Type declaration

  • ENUMS: {
        AGE: string[];
        DAY_OF_WEEK: string[];
        MONTH: string[];
        NOON: string[];
        SEPARATOR: string[];
        SEVERITY: string[];
    }

    Some lookups for predefined values.

    • AGE: string[]

      An array containing the names of the age {0: Before Common Era, 1: Common Era}

    • DAY_OF_WEEK: string[]

      An Array containing the full names of the day of the week, starting with Monday, at the indices 0..6; and the short names at the indices 7..13

    • MONTH: string[]

      An Array containing the full names of the months at the indices 0..11, and the short names at the indices 12..23.

    • NOON: string[]

      An array containing the Morning - Afternoon identifiers (am - pm) with am at index 0, pm at index 1

    • SEPARATOR: string[]

      An array containing the time separator at index 0 and the date separator at index 1 and the time-zone-separator at index 2

    • SEVERITY: string[]

      An Array containing strings according to the index of the Severity Enum.

  • MESSAGE: string

    The message default format.

  • TIME: string

    The time default format.