rxdb-server
Version:
RxDB Server Plugin
8 lines (7 loc) • 397 B
TypeScript
import { RxServer } from './rx-server.ts';
import { RxServerOptions } from './types.ts';
export * from './types.ts';
export * from './endpoint-replication.ts';
export * from './endpoint-rest.ts';
export * from './helper.ts';
export declare function createRxServer<ServerAdapterType, AuthType>(options: RxServerOptions<ServerAdapterType, AuthType>): Promise<RxServer<ServerAdapterType, AuthType>>;