@anglr/rest
Version:
Angular module representing rest services
9 lines • 442 B
TypeScript
import { Observable } from 'rxjs';
import type { RESTClientBase } from '../../misc/classes/restClientBase';
/**
* Function that is used as response transform function
*/
export interface ResponseTransformFunc<TResponse = unknown, TTransformedResponse = TResponse> {
(this: RESTClientBase, response: Observable<TResponse>, ...args: unknown[]): Observable<TTransformedResponse>;
}
//# sourceMappingURL=responseTransform.interface.d.ts.map