init component
This commit is contained in:
15
node_modules/fp-ts/lib/BoundedMeetSemilattice.d.ts
generated
vendored
Normal file
15
node_modules/fp-ts/lib/BoundedMeetSemilattice.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* A `BoundedMeetSemilattice` must satisfy the following laws in addition to `MeetSemilattice` laws:
|
||||
*
|
||||
* - `a ∧ 1 <-> a`
|
||||
*
|
||||
* @since 2.0.0
|
||||
*/
|
||||
import { MeetSemilattice } from './MeetSemilattice'
|
||||
/**
|
||||
* @category model
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export interface BoundedMeetSemilattice<A> extends MeetSemilattice<A> {
|
||||
readonly one: A
|
||||
}
|
||||
Reference in New Issue
Block a user