@anglr/rest
Version:
Angular module representing rest services
14 lines • 347 B
TypeScript
/**
* Type describing response for ResponseType.LocationHeader
*/
export interface LocationHeaderResponse {
/**
* Value of 'location' header from response
*/
location: string;
/**
* Guessed id of new record from 'location' header
*/
id: string;
}
//# sourceMappingURL=locationHeaderResponse.interface.d.ts.map