init component

This commit is contained in:
Robin COuret
2026-02-16 17:28:37 +01:00
parent 460c7a25e0
commit e0e50af706
4557 changed files with 666911 additions and 8 deletions

62
node_modules/fp-ts/es6/Pointed.d.ts generated vendored Normal file
View File

@@ -0,0 +1,62 @@
/**
* @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>
}