UNPKG

@prezly/theme-kit-react

Version:

Data layer and utility library for developing Prezly themes with NextJS

4 lines (3 loc) 252 B
import type { Iso8601Date, UnixTimestampInSeconds } from '@prezly/theme-kit-intl'; export type Optional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>; export declare function toDate(value: Date | Iso8601Date | UnixTimestampInSeconds): Date;