ronin
Version:
Access your RONIN database via TypeScript.
19 lines (16 loc) • 458 B
TypeScript
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 };