/** * Per-user database provisioning daemon. * * Replaces CouchDB's built-in couch_peruser Erlang module, which has a * process leak bug that causes unbounded memory growth: * https://github.com/apache/couchdb/issues/5871 * * Watches the _users database changes feed and ensures that every user * has a corresponding userdb-{hex(username)} database with appropriate * security settings. Replays from since=0 on every startup — this is * cheap and removes the need to persist checkpoint state. */ export declare function startPerUserProvisioning(): void; //# sourceMappingURL=peruser.d.ts.map