Merge pull request #34384 from zjgreen/master

Added `Client.atomicUpdate` to solr-client Types
This commit is contained in:
Benjamin Lichtman
2019-04-02 16:11:48 -07:00
committed by GitHub

View File

@@ -160,6 +160,7 @@ export interface Client {
post(handler: string, query: Query | object | string, callback?: (err: Error, data: object) => void): ClientRequest;
escapeSpecialChars(s: string): string;
query(): Query;
atomicUpdate(doc: object, callback?: (err: Error, data: object) => void): ClientRequest;
}
export as namespace Solr;