UNPKG

@getanthill/datastore

Version:

Event-Sourced Datastore

14 lines (13 loc) 453 B
import type { Services } from '../typings'; import type { DatastoreConfig } from '../sdk/Datastore'; import _config from '../config'; import { Datastore } from '../sdk'; export declare function getDatastores(config: { datastores: { name: string; config: DatastoreConfig; }[]; }): Map<string, Datastore>; declare const services: Services; export declare function build(config?: typeof _config): Services; export default services;