Skip to content

Commit

Permalink
fix moment export (#1130)
Browse files Browse the repository at this point in the history
  • Loading branch information
schiller-manuel authored Nov 9, 2024
1 parent b520f5d commit bcdfcb4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/core/modules/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

import {List as ImmList, Map as ImmMap, OrderedMap as ImmOMap} from "immutable";
import {ElementType, ReactElement, Factory} from "react";
import moment from "moment";
import type { Moment as MomentType } from "moment";
import type { i18n } from "i18next";

Expand Down Expand Up @@ -630,7 +631,7 @@ export interface Utils extends Import, Export,
OtherUtils: OtherUtils;
// libs
i18n: i18n;
moment: Moment;
moment: typeof moment;
}


Expand Down

0 comments on commit bcdfcb4

Please sign in to comment.