Skip to content

Commit

Permalink
chore: fix ProposalSet
Browse files Browse the repository at this point in the history
  • Loading branch information
artalar authored Jun 9, 2024
1 parent 4271568 commit 09e8f45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/primitives/src/reatomSet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface SetAtom<T> extends AtomMut<Set<T>> {
set: Action<[el: T], Set<T>>
}

export interface ProposalSet<T> extends Set<T> {
interface ProposalSet<T> extends Set<T> {
difference(other: Set<T>): Set<T>
intersection(other: Set<T>): Set<T>
isDisjointFrom(other: Set<T>): boolean
Expand Down

0 comments on commit 09e8f45

Please sign in to comment.