UNPKG

@anglr/rest

Version:

Angular module representing rest services

30 lines 1.14 kB
/** * Options for AvroAdapterInterceptor */ export declare class AvroAdapterInterceptorOptions { /** * Indication whether this interceptor is disabled */ disabled: boolean; /** * Name of header used for passing fingerprint of schema */ fingerprintHeaderName?: string; /** * Name of header used for passing name of type */ typeHeaderName?: string; /** * Value passed to custom Accept header and Content-Type header */ customAcceptContentTypeHeader?: string; /** * Creates instance of HttpErrorInterceptorOptions * @param disabled - Indication whether this interceptor is disabled * @param fingerprintHeaderName - Name of header used for passing fingerprint of schema * @param typeHeaderName - Name of header used for passing name of type * @param customAcceptContentTypeHeader - Value passed to custom Accept header and Content-Type header */ constructor(disabled?: boolean, fingerprintHeaderName?: string, typeHeaderName?: string, customAcceptContentTypeHeader?: string); } //# sourceMappingURL=avroAdapter.options.d.ts.map