Initial commit
This commit is contained in:
17
node_modules/date-fns/parse/_lib/parsers/DayPeriodParser.d.ts
generated
vendored
Normal file
17
node_modules/date-fns/parse/_lib/parsers/DayPeriodParser.d.ts
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
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[];
|
||||
}
|
||||
Reference in New Issue
Block a user