UNPKG

date-fns

Version:

Modern JavaScript date utility library

18 lines (17 loc) 413 B
import type { LocalizedOptions, FirstWeekContainsDateOptions, WeekOptions, } from "../../types.ts"; export interface ParseFlags { timestampIsSet?: boolean; era?: number; } export type ParserOptions = Required< LocalizedOptions<"options"> & FirstWeekContainsDateOptions & WeekOptions >; export type ParseResult<TValue> = { value: TValue; rest: string; } | null; //# sourceMappingURL=types.d.ts.map