63 lines
1.2 KiB
TypeScript
63 lines
1.2 KiB
TypeScript
/**
|
|
* @since 2.10.0
|
|
*/
|
|
import { HKT, Kind, Kind2, Kind3, Kind4, URIS, URIS2, URIS3, URIS4 } from './HKT'
|
|
/**
|
|
* @category model
|
|
* @since 2.10.0
|
|
*/
|
|
export interface Pointed<F> {
|
|
readonly URI: F
|
|
readonly of: <A>(a: A) => HKT<F, A>
|
|
}
|
|
/**
|
|
* @category model
|
|
* @since 2.10.0
|
|
*/
|
|
export interface Pointed1<F extends URIS> {
|
|
readonly URI: F
|
|
readonly of: <A>(a: A) => Kind<F, A>
|
|
}
|
|
/**
|
|
* @category model
|
|
* @since 2.10.0
|
|
*/
|
|
export interface Pointed2<F extends URIS2> {
|
|
readonly URI: F
|
|
readonly of: <E, A>(a: A) => Kind2<F, E, A>
|
|
}
|
|
/**
|
|
* @category model
|
|
* @since 2.10.0
|
|
*/
|
|
export interface Pointed2C<F extends URIS2, E> {
|
|
readonly URI: F
|
|
readonly _E: E
|
|
readonly of: <A>(a: A) => Kind2<F, E, A>
|
|
}
|
|
/**
|
|
* @category model
|
|
* @since 2.10.0
|
|
*/
|
|
export interface Pointed3<F extends URIS3> {
|
|
readonly URI: F
|
|
readonly of: <R, E, A>(a: A) => Kind3<F, R, E, A>
|
|
}
|
|
/**
|
|
* @category model
|
|
* @since 2.10.0
|
|
*/
|
|
export interface Pointed3C<F extends URIS3, E> {
|
|
readonly URI: F
|
|
readonly _E: E
|
|
readonly of: <R, A>(a: A) => Kind3<F, R, E, A>
|
|
}
|
|
/**
|
|
* @category model
|
|
* @since 2.10.0
|
|
*/
|
|
export interface Pointed4<F extends URIS4> {
|
|
readonly URI: F
|
|
readonly of: <S, R, E, A>(a: A) => Kind4<F, S, R, E, A>
|
|
}
|