UNPKG

date-fns

Version:

Modern JavaScript date utility library

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