diff --git a/source/types.ts b/source/types.ts index 0cf5f8e..d49b282 100644 --- a/source/types.ts +++ b/source/types.ts @@ -52,10 +52,5 @@ export type Falsy = false | 0 | 0n | '' | null | undefined; export interface WeakRef { // eslint-disable-line @typescript-eslint/ban-types readonly [Symbol.toStringTag]: 'WeakRef'; - - /** - * Returns the WeakRef instance's target object, or undefined if the target object has been - * reclaimed. - */ deref(): T | undefined; }