init component
This commit is contained in:
64
node_modules/fp-ts/lib/Show.d.ts
generated
vendored
Normal file
64
node_modules/fp-ts/lib/Show.d.ts
generated
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
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>
|
||||
Reference in New Issue
Block a user