Skip to content

Commit

Permalink
Fix typings
Browse files Browse the repository at this point in the history
  • Loading branch information
Exelord committed Mar 27, 2024
1 parent 197e305 commit 4a35817
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/primitives/weak-map.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import { batch } from "solid-js";
import { createWeakCache, track, dirty } from "../utils/cache";

export class SignaledWeakMap<
K extends object = object,
V = any
> extends WeakMap<K, V> {
export class SignaledWeakMap<K extends object, V> extends WeakMap<K, V> {
private readonly keysCache = createWeakCache();
private readonly valuesCache = createWeakCache();

Expand Down

0 comments on commit 4a35817

Please sign in to comment.