@blocksuite/global
Advanced tools
Comparing version 0.0.0-canary-20241027001539 to 0.0.0-canary-20241028001513
# @blocksuite/global | ||
## 0.0.0-canary-20241027001539 | ||
## 0.0.0-canary-20241028001513 | ||
@@ -5,0 +5,0 @@ ### Patch Changes |
@@ -5,3 +5,6 @@ type DisposeCallback = () => void; | ||
} | ||
export declare class DisposableGroup implements Disposable { | ||
export interface DisposableManager extends Disposable { | ||
add(d: Disposable | DisposeCallback): void; | ||
} | ||
export declare class DisposableGroup implements DisposableManager { | ||
private _disposables; | ||
@@ -8,0 +11,0 @@ private _disposed; |
{ | ||
"name": "@blocksuite/global", | ||
"version": "0.0.0-canary-20241027001539", | ||
"version": "0.0.0-canary-20241028001513", | ||
"types": "./index.d.ts", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -7,3 +7,7 @@ type DisposeCallback = () => void; | ||
export class DisposableGroup implements Disposable { | ||
export interface DisposableManager extends Disposable { | ||
add(d: Disposable | DisposeCallback): void; | ||
} | ||
export class DisposableGroup implements DisposableManager { | ||
private _disposables: Disposable[] = []; | ||
@@ -10,0 +14,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
710982
13817
11018