1 | export interface UploadContext {
|
2 | set: (key: string, value: unknown) => void;
|
3 | get: (key: string) => unknown;
|
4 | addListener: (listener: UploadContextListener) => () => void;
|
5 | }
|
6 | type UploadContextListener = (values: Record<string, unknown>) => void;
|
7 | export declare function createUploadContext(): UploadContext;
|
8 | export {};
|