@anglr/rest
Version:
Angular module representing rest services
11 lines • 385 B
TypeScript
import { Type } from '@angular/core';
/**
* Contains array of interceptor types that will be disabled
*/
export interface RestDisabledInterceptors<TType = unknown> extends TypedPropertyDescriptor<unknown> {
/**
* Array of interceptors types that will be disabled
*/
disabledInterceptors: Type<TType>[];
}
//# sourceMappingURL=disabledInterceptors.interface.d.ts.map