Closed Neathan closed 3 years ago
History view should now be ready for review.
tsc currently gives an error that dateStyle is not part of DateTimeFormatOptions, which it should be. Extract from lib.es2020.intl.d.ts:
dateStyle
DateTimeFormatOptions
interface DateTimeFormatOptions { dateStyle?: "full" | "long" | "medium" | "short"; timeStyle?: "full" | "long" | "medium" | "short"; calendar?: string; dayPeriod?: "narrow" | "short" | "long"; numberingSystem?: string; hourCycle?: "h11" | "h12" | "h23" | "h24"; fractionalSecondDigits?: 0 | 1 | 2 | 3; }
Anyone know whats happening here?
Should we close this one?
Ye but it need one more aproval
Closing this issue since it has become redundant by #31
History view should now be ready for review.
tsc currently gives an error that
dateStyle
is not part ofDateTimeFormatOptions
, which it should be. Extract from lib.es2020.intl.d.ts:Anyone know whats happening here?