You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I agree this is an issue, but you can use TS generics to extract it from exported members:
import { convertDateToTime } from 'timezone-support'; // Time type is not exported from timezone-support type Time = ReturnType<typeof convertDateToTime>;
Are those interfaces really considered private? If so then why some public functions use them as return and/or input types?
For now I need to use "any" or redefine the interfaces in my own code, which doesn't seem right.
The text was updated successfully, but these errors were encountered: