UNPKG

@rdfc/sds-storage-writer-ts

Version:

An RDF-Connect processor to write SDS streams into a given storage system

21 lines (20 loc) 448 B
import { RelationType } from "@treecg/types"; export type TREEFragment = { id?: string; streamId: string; value?: string; relations: Array<{ type: RelationType; value?: string; bucket: string; path?: string; timestampRelation?: boolean; }>; members?: string[]; count: number; timeStamp?: Date; span: number; immutable: boolean; root: boolean; page: number; };