UEA-PRODEM

This commit is contained in:
2026-06-10 12:14:46 -03:00
parent f54126b9d8
commit 9947565694
5319 changed files with 148520 additions and 129332 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
import type { LocaleDayPeriod, Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { LocaleDayPeriod, Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class AMPMMidnightParser extends Parser<LocaleDayPeriod> {
priority: number;
parse(
+3 -3
View File
@@ -1,6 +1,6 @@
import type { LocaleDayPeriod, Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { LocaleDayPeriod, Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class AMPMMidnightParser extends Parser<LocaleDayPeriod> {
priority: number;
parse(
+3 -3
View File
@@ -1,6 +1,6 @@
import type { LocaleDayPeriod, Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { LocaleDayPeriod, Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class AMPMParser extends Parser<LocaleDayPeriod> {
priority: number;
parse(
+3 -3
View File
@@ -1,6 +1,6 @@
import type { LocaleDayPeriod, Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { LocaleDayPeriod, Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class AMPMParser extends Parser<LocaleDayPeriod> {
priority: number;
parse(
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class DateParser extends Parser<number> {
priority: number;
subPriority: number;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class DateParser extends Parser<number> {
priority: number;
subPriority: number;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class DayOfYearParser extends Parser<number> {
priority: number;
subpriority: number;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class DayOfYearParser extends Parser<number> {
priority: number;
subpriority: number;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.ts";
export declare class DayParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.ts";
export declare class DayParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { LocaleDayPeriod, Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { LocaleDayPeriod, Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class DayPeriodParser extends Parser<LocaleDayPeriod> {
priority: number;
parse(
+3 -3
View File
@@ -1,6 +1,6 @@
import type { LocaleDayPeriod, Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { LocaleDayPeriod, Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class DayPeriodParser extends Parser<LocaleDayPeriod> {
priority: number;
parse(
+4 -4
View File
@@ -1,7 +1,7 @@
import type { Match } from "../../../locale/types.js";
import type { Era } from "../../../types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import type { Era } from "../../../types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class EraParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<Era>;
+4 -4
View File
@@ -1,7 +1,7 @@
import type { Match } from "../../../locale/types.js";
import type { Era } from "../../../types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import type { Era } from "../../../types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class EraParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<Era>;
+2 -2
View File
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class ExtendedYearParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string): ParseResult<number>;
+2 -2
View File
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class ExtendedYearParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string): ParseResult<number>;
+2 -2
View File
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class FractionOfSecondParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string): ParseResult<number>;
+2 -2
View File
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class FractionOfSecondParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class Hour0To11Parser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class Hour0To11Parser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class Hour0to23Parser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class Hour0to23Parser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class Hour1To24Parser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class Hour1To24Parser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class Hour1to12Parser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class Hour1to12Parser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class ISODayParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class ISODayParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+2 -2
View File
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class ISOTimezoneParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string): ParseResult<number>;
+2 -2
View File
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class ISOTimezoneParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string): ParseResult<number>;
+2 -2
View File
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class ISOTimezoneWithZParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string): ParseResult<number>;
+2 -2
View File
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class ISOTimezoneWithZParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class ISOWeekParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class ISOWeekParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+2 -2
View File
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class ISOWeekYearParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string): ParseResult<number>;
+2 -2
View File
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class ISOWeekYearParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.ts";
export declare class LocalDayParser extends Parser<number> {
priority: number;
parse(
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.ts";
export declare class LocalDayParser extends Parser<number> {
priority: number;
parse(
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.ts";
export declare class LocalWeekParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.ts";
export declare class LocalWeekParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+4 -4
View File
@@ -1,7 +1,7 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.js";
import type { YearParserValue } from "./YearParser.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.ts";
import type { YearParserValue } from "./YearParser.ts";
export declare class LocalWeekYearParser extends Parser<YearParserValue> {
priority: number;
parse(
+4 -4
View File
@@ -1,7 +1,7 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.js";
import type { YearParserValue } from "./YearParser.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.ts";
import type { YearParserValue } from "./YearParser.ts";
export declare class LocalWeekYearParser extends Parser<YearParserValue> {
priority: number;
parse(
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class MinuteParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class MinuteParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class MonthParser extends Parser<number> {
incompatibleTokens: string[];
priority: number;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class MonthParser extends Parser<number> {
incompatibleTokens: string[];
priority: number;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class QuarterParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class QuarterParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class SecondParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class SecondParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.ts";
export declare class StandAloneLocalDayParser extends Parser<number> {
priority: number;
parse(
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult, ParserOptions } from "../types.ts";
export declare class StandAloneLocalDayParser extends Parser<number> {
priority: number;
parse(
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class StandAloneMonthParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class StandAloneMonthParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class StandAloneQuarterParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class StandAloneQuarterParser extends Parser<number> {
priority: number;
parse(dateString: string, token: string, match: Match): ParseResult<number>;
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class TimestampMillisecondsParser extends Parser<number> {
priority: number;
parse(dateString: string): ParseResult<number>;
+2 -2
View File
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class TimestampMillisecondsParser extends Parser<number> {
priority: number;
parse(dateString: string): ParseResult<number>;
+2 -2
View File
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class TimestampSecondsParser extends Parser<number> {
priority: number;
parse(dateString: string): ParseResult<number>;
+2 -2
View File
@@ -1,5 +1,5 @@
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export declare class TimestampSecondsParser extends Parser<number> {
priority: number;
parse(dateString: string): ParseResult<number>;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export interface YearParserValue {
year: number;
isTwoDigitYear: boolean;
+3 -3
View File
@@ -1,6 +1,6 @@
import type { Match } from "../../../locale/types.js";
import { Parser } from "../Parser.js";
import type { ParseFlags, ParseResult } from "../types.js";
import type { Match } from "../../../locale/types.ts";
import { Parser } from "../Parser.ts";
import type { ParseFlags, ParseResult } from "../types.ts";
export interface YearParserValue {
year: number;
isTwoDigitYear: boolean;