import './index-qxdCxb3O.js';
import { StoredObject } from '@ronin/compiler';

type StorableObject = {
    query: {
        index: number;
        type: 'set' | 'add';
    };
    name?: string;
    schema: string;
    field: string;
    value?: any;
    contentType: string;
    reference: StoredObject | null;
};
type StorableObjectValue = File | ReadableStream | Buffer | ArrayBuffer | Blob;

export type { StorableObject as S, StorableObjectValue as a };
