mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-01 23:06:13 +00:00
mac: bundle web chat assets
This commit is contained in:
17
apps/macos/Sources/Clawdis/Resources/WebChat/components/sandbox/AttachmentsRuntimeProvider.d.ts
vendored
Normal file
17
apps/macos/Sources/Clawdis/Resources/WebChat/components/sandbox/AttachmentsRuntimeProvider.d.ts
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import type { Attachment } from "../../utils/attachment-utils.js";
|
||||
import type { SandboxRuntimeProvider } from "./SandboxRuntimeProvider.js";
|
||||
/**
|
||||
* Attachments Runtime Provider
|
||||
*
|
||||
* OPTIONAL provider that provides file access APIs to sandboxed code.
|
||||
* Only needed when attachments are present.
|
||||
* Attachments are read-only snapshot data - no messaging needed.
|
||||
*/
|
||||
export declare class AttachmentsRuntimeProvider implements SandboxRuntimeProvider {
|
||||
private attachments;
|
||||
constructor(attachments: Attachment[]);
|
||||
getData(): Record<string, any>;
|
||||
getRuntime(): (sandboxId: string) => void;
|
||||
getDescription(): string;
|
||||
}
|
||||
//# sourceMappingURL=AttachmentsRuntimeProvider.d.ts.map
|
||||
Reference in New Issue
Block a user