Skip to content

Commit

Permalink
fix: rollback types changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ValeraS committed Nov 23, 2023
1 parent 2ca88b9 commit 123deba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/typings/dateTime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ export interface DateTime extends Object {
format(formatInput?: FormatInput): string;
fromNow(withoutSuffix?: boolean): string;
from(formaInput: DateTimeInput, withoutSuffix?: boolean): string;
isSame(input: DateTimeInput, granularity?: StartOfUnit): boolean;
isBefore(input: DateTimeInput): boolean;
isAfter(input: DateTimeInput): boolean;
isSame(input?: DateTimeInput, granularity?: StartOfUnit): boolean;
isBefore(input?: DateTimeInput): boolean;
isAfter(input?: DateTimeInput): boolean;
isValid(): boolean;
local(keepLocalTime?: boolean): DateTime;
locale(): string;
Expand Down

0 comments on commit 123deba

Please sign in to comment.