trellis
Version:
Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications
14 lines • 596 B
TypeScript
/**
* Gallery entry — upload (headless upload queue: concurrency, progress,
* dedupe by key, cancel/retry/remove; the transport is the only I/O).
*/
import { createUploadCore } from '../../upload/index.js';
import type { RegisteredComponent } from '../../inspector/index.js';
import type { UploadTransport } from '../../upload/index.js';
declare const transport: UploadTransport;
type UploadConfig = {
transport: typeof transport;
};
export declare const uploadEntry: RegisteredComponent<UploadConfig, ReturnType<typeof createUploadCore>>;
export {};
//# sourceMappingURL=upload.d.ts.map