Skip to content

Commit 27a7206

Browse files
committed
WIP
1 parent 0e2712f commit 27a7206

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/internal/setWrapper.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,25 @@ export class SetWrapper<K extends string | number>
2020
extends BaseProxyTrap
2121
implements Set<K>
2222
{
23-
union<U>(other: ReadonlySetLike<U>): Set<K | U> {
23+
union<U>(_other: ReadonlySetLike<U>): Set<K | U> {
2424
throw new Error("Method not implemented.");
2525
}
26-
intersection<U>(other: ReadonlySetLike<U>): Set<K & U> {
26+
intersection<U>(_other: ReadonlySetLike<U>): Set<K & U> {
2727
throw new Error("Method not implemented.");
2828
}
29-
difference<U>(other: ReadonlySetLike<U>): Set<K> {
29+
difference<U>(_other: ReadonlySetLike<U>): Set<K> {
3030
throw new Error("Method not implemented.");
3131
}
32-
symmetricDifference<U>(other: ReadonlySetLike<U>): Set<K | U> {
32+
symmetricDifference<U>(_other: ReadonlySetLike<U>): Set<K | U> {
3333
throw new Error("Method not implemented.");
3434
}
35-
isSubsetOf(other: ReadonlySetLike<unknown>): boolean {
35+
isSubsetOf(_other: ReadonlySetLike<unknown>): boolean {
3636
throw new Error("Method not implemented.");
3737
}
38-
isSupersetOf(other: ReadonlySetLike<unknown>): boolean {
38+
isSupersetOf(_other: ReadonlySetLike<unknown>): boolean {
3939
throw new Error("Method not implemented.");
4040
}
41-
isDisjointFrom(other: ReadonlySetLike<unknown>): boolean {
41+
isDisjointFrom(_other: ReadonlySetLike<unknown>): boolean {
4242
throw new Error("Method not implemented.");
4343
}
4444

0 commit comments

Comments
 (0)