DataSourceWithBackend: add internal comment for new method (#26139)

This commit is contained in:
Ryan McKinley 2020-07-07 22:29:36 -07:00 committed by GitHub
parent b0fd9f03ca
commit 2b6833d0da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,6 +129,11 @@ export class DataSourceWithBackend<
/**
* Optionally augment the response before returning the results to the
*
* NOTE: this was added in 7.1 for azure, and will be removed in 7.2
* when the entire response pipeline is Observable
*
* @internal
*/
processResponse?(res: DataQueryResponse): Promise<DataQueryResponse>;