@anglr/rest
Version:
Angular module representing rest services
11 lines • 404 B
TypeScript
import { LocationHeaderResponse } from './locationHeaderResponse.interface';
/**
* Type describing response for ResponseType.LocationHeaderAndJson
*/
export interface LocationHeaderAndJsonResponse<TData = unknown> extends LocationHeaderResponse {
/**
* Deserialized json string from response body
*/
data: TData;
}
//# sourceMappingURL=locationHeaderAndJsonResponse.interface.d.ts.map