@anglr/rest
Version:
Angular module representing rest services
11 lines • 332 B
TypeScript
import { ResponseType } from '../../../misc/enums';
/**
* Contains response type that will be set
*/
export interface RestResponseType extends TypedPropertyDescriptor<unknown> {
/**
* Response type to be set
*/
responseType: ResponseType | undefined | null;
}
//# sourceMappingURL=responseType.interface.d.ts.map