UNPKG

@mkeen/rxcouch

Version:

Real Time RxJs Based CouchDB Client

19 lines (18 loc) 1.08 kB
import { WatcherConfig } from './types'; export declare namespace CouchUrls { function design(config: WatcherConfig, designName: string, designTypeName: string, designType?: string, options?: any): string; function document(config: WatcherConfig, docId?: string): string; function documentDelete(config: WatcherConfig): string; function prefix(config: WatcherConfig): string; function watch(config: WatcherConfig): string; function authenticate(config: WatcherConfig): string; function find(config: WatcherConfig): string; function user(config: WatcherConfig, username: string, namespace?: string): string; function session(config: WatcherConfig): string; function changes(config: WatcherConfig): string; function changesWithIds(config: WatcherConfig): string; function database(config: WatcherConfig, newDbName: string): string; function databaseSecurity(config: WatcherConfig, newDbName: string): string; function uuids(config: WatcherConfig, count: number): string; function _all_docs(config: WatcherConfig): string; }