jsmreese / moment-duration-format

Format function plugin for the Moment Duration object.
MIT License
968 stars 120 forks source link

Easier setup with TypeScript #162

Open bennycode opened 4 months ago

bennycode commented 4 months ago

I am using moment-duration-format v2.3.2 along with @types/moment-duration-format v2.2.6.

I have to initialize it like this:

import moment from "moment";
import momentDurationFormatSetup from "moment-duration-format";

momentDurationFormatSetup(moment as any);

Preferrably, I wouldn't like to use the as any assertion but if I use it without I am getting this error:

image

sgrund14 commented 1 month ago

same error here

any workaround?

bennycode commented 1 month ago

I haven't found any workaround but maybe @jsmreese has an idea?