UNPKG

io-ts-types

Version:

A collection of codecs and combinators for use with io-ts

13 lines (12 loc) 194 B
/** * @since 0.5.0 */ import * as t from 'io-ts' /** * @since 0.5.0 */ export interface DateC extends t.Type<Date, Date, unknown> {} /** * @since 0.5.0 */ export declare const date: DateC