UNPKG

tedb

Version:

TypeScript Embedded Database

16 lines (15 loc) 587 B
/** * Created by tsturzl on 4/11/17. */ import Datastore from "./datastore"; import Cursor from "./cursor"; import Index from "./indices"; import { IIndex } from "./indices"; import { Ioptions } from "./cursor"; import { IDatastore } from "./datastore"; import { IStorageDriver, IRange, IindexOptions, IupdateOptions, Isanitize, Iexist } from "./types"; export { getDate, compareArray, Base64 } from "./utils"; export { Datastore, IDatastore }; export { Cursor, Ioptions }; export { Index, IIndex }; export { IStorageDriver, IRange, IindexOptions, IupdateOptions, Isanitize, Iexist };