Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
18 lines
518 B
Plaintext
18 lines
518 B
Plaintext
import type { LocaleDayPeriod, Match } from "../../../locale/types.js";
|
|
import { Parser } from "../Parser.js";
|
|
import type { ParseFlags, ParseResult } from "../types.js";
|
|
export declare class DayPeriodParser extends Parser<LocaleDayPeriod> {
|
|
priority: number;
|
|
parse(
|
|
dateString: string,
|
|
token: string,
|
|
match: Match,
|
|
): ParseResult<LocaleDayPeriod>;
|
|
set<DateType extends Date>(
|
|
date: DateType,
|
|
_flags: ParseFlags,
|
|
value: LocaleDayPeriod,
|
|
): DateType;
|
|
incompatibleTokens: string[];
|
|
}
|