go integration and wikipedia
This commit is contained in:
parent
47a252e339
commit
ee90335b92
7828 changed files with 1307913 additions and 20807 deletions
20
frontend/node_modules/date-fns/parse/_lib/parsers/LocalDayParser.d.ts
generated
vendored
Normal file
20
frontend/node_modules/date-fns/parse/_lib/parsers/LocalDayParser.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import type { Match } from "../../../locale/types.js";
|
||||
import { Parser } from "../Parser.js";
|
||||
import type { ParseFlags, ParseResult, ParserOptions } from "../types.js";
|
||||
export declare class LocalDayParser extends Parser<number> {
|
||||
priority: number;
|
||||
parse(
|
||||
dateString: string,
|
||||
token: string,
|
||||
match: Match,
|
||||
options: ParserOptions,
|
||||
): ParseResult<number>;
|
||||
validate<DateType extends Date>(_date: DateType, value: number): boolean;
|
||||
set<DateType extends Date>(
|
||||
date: DateType,
|
||||
_flags: ParseFlags,
|
||||
value: number,
|
||||
options: ParserOptions,
|
||||
): DateType;
|
||||
incompatibleTokens: string[];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue