Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions typings/adapter/moment-date-adapter.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export declare class MomentDateAdapter extends DateAdapter<Moment> {
addCalendarMonths(date: Moment, months: number): Moment;
addCalendarDays(date: Moment, days: number): Moment;
toIso8601(date: Moment): string;
fromIso8601(iso8601String: string): Moment | null;
/**
* Returns the given value if given a valid Moment or null. Deserializes valid ISO 8601 strings
* (https://www.ietf.org/rfc/rfc3339.txt) and valid Date objects into valid Moments and empty
Expand Down