Skip to content

Commit

Permalink
fix: improve typings for utc plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
KalachevDev committed Mar 24, 2023
1 parent 7ed7303 commit a488700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/typings/dateTime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export interface DateTime extends Object {
isoWeekday: (day?: number | string) => number | string;
valueOf: () => number;
unix: () => number;
utc: () => DateTime;
utc: (keepLocalTime?: boolean) => DateTime;
utcOffset: (offset?: number, keepLocalTime?: boolean) => DateTime;
daysInMonth: () => number;
date(): number;
Expand Down

0 comments on commit a488700

Please sign in to comment.