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

15
node_modules/fp-ts/es6/Group.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
/**
* A `Group` is a `Monoid` with inverses. Instances must satisfy the following law in addition to the monoid laws:
*
* - Inverse: `concat(inverse(a), a) <-> empty = concat(a, inverse(a))`
*
* @since 2.0.0
*/
import { Monoid } from './Monoid'
/**
* @category model
* @since 2.0.0
*/
export interface Group<A> extends Monoid<A> {
readonly inverse: (a: A) => A
}