UNPKG

fp-ts

Version:

Functional programming in TypeScript

65 lines (64 loc) 1.44 kB
import { ReadonlyRecord } from './ReadonlyRecord' /** * @category model * @since 2.0.0 */ export interface Show<A> { readonly show: (a: A) => string } /** * @since 2.10.0 */ export declare const struct: <A>(shows: { [K in keyof A]: Show<A[K]> }) => Show<{ readonly [K in keyof A]: A[K] }> /** * @since 2.10.0 */ export declare const tuple: <A extends ReadonlyArray<unknown>>( ...shows: { [K in keyof A]: Show<A[K]> } ) => Show<Readonly<A>> /** * Use [`tuple`](#tuple) instead. * * @category zone of death * @since 2.0.0 * @deprecated */ export declare const getTupleShow: <T extends ReadonlyArray<Show<any>>>( ...shows: T ) => Show<{ [K in keyof T]: T[K] extends Show<infer A> ? A : never }> /** * Use [`struct`](#struct) instead. * * @category zone of death * @since 2.0.0 * @deprecated */ export declare const getStructShow: <O extends ReadonlyRecord<string, any>>(shows: { [K in keyof O]: Show<O[K]> }) => Show<O> /** * Use [`Show`](./boolean.ts.html#show) instead. * * @category zone of death * @since 2.0.0 * @deprecated */ export declare const showBoolean: Show<boolean> /** * Use [`Show`](./string.ts.html#show) instead. * * @category zone of death * @since 2.0.0 * @deprecated */ export declare const showString: Show<string> /** * Use [`Show`](./number.ts.html#show) instead. * * @category zone of death * @since 2.0.0 * @deprecated */ export declare const showNumber: Show<number>