我正在浏览一些使用 moment.js 的旧代码,现在正在转向 luxon。但是,在将 luxon 与 Typescript 结合使用时,我遇到了一些问题。这是一个例子:
interface ColumnProps {
day: Moment
isPast: boolean
onPostClick: PublishPostCardProps['onClick']
posts: PublishEvent[]
}
day
当前键入为 Moment
. luxon有类似的东西吗?我正在考虑使用date
但这没有用。感谢任何见解:)
干杯