@cloud-os/sandbox-app-standard-bridge 20251214.0.4 → 20251215.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,6 +3,6 @@ export declare abstract class StorageProviderHook {
|
|
|
3
3
|
abstract include(prefix: string, key: string): Promise<boolean>;
|
|
4
4
|
abstract list(prefix: string): Promise<File[]>;
|
|
5
5
|
abstract read(prefix: string, key: string): Promise<ArrayBuffer | null>;
|
|
6
|
-
abstract write(prefix: string, key: string, value: ArrayBuffer): Promise<void>;
|
|
6
|
+
abstract write(prefix: string, key: string, value: ArrayBuffer | null): Promise<void>;
|
|
7
7
|
abstract delete(prefix: string, key: string): Promise<void>;
|
|
8
8
|
}
|