@cloud-os/sandbox-app-standard-bridge 20251212.0.5 → 20251213.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.
- package/dist/Hooks/Io/StorageProviderHook.d.ts +9 -0
- package/dist/Hooks/Io/StorageProviderHook.js +2 -0
- package/dist/Hooks/index.d.ts +1 -0
- package/dist/Hooks/index.js +1 -0
- package/dist/Interface/Io/File.d.ts +7 -0
- package/dist/Interface/Io/File.js +1 -0
- package/dist/Interface/Io/FileType.d.ts +5 -0
- package/dist/Interface/Io/FileType.js +4 -0
- package/dist/Interface/index.d.ts +2 -0
- package/dist/Interface/index.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { File } from "../../Interface/Io/File";
|
|
2
|
+
export declare abstract class StorageProviderHook {
|
|
3
|
+
abstract name(): Promise<string>;
|
|
4
|
+
abstract include(prefix: string, key: string): Promise<boolean>;
|
|
5
|
+
abstract list(prefix: string): Promise<File[]>;
|
|
6
|
+
abstract read(prefix: string, key: string): Promise<ArrayBuffer | null>;
|
|
7
|
+
abstract write(prefix: string, key: string, value: ArrayBuffer): Promise<void>;
|
|
8
|
+
abstract delete(prefix: string, key: string): Promise<void>;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { StorageProviderHook } from "./Io/StorageProviderHook";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { StorageProviderHook } from "./Io/StorageProviderHook";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -6,3 +6,5 @@ export { InstallApplicationInfo } from "./System/InstallApplicationInfo";
|
|
|
6
6
|
export { RunningApplciationInfo } from "./System/RunningApplicaationInfo";
|
|
7
7
|
export { ProcessInfo } from "./System/ProcessInfo";
|
|
8
8
|
export { Event } from "./SandboxApplication/Event";
|
|
9
|
+
export { File } from "./Io/File";
|
|
10
|
+
export { FileType } from "./Io/FileType";
|
package/dist/Interface/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED