import { InjectionToken } from '@angular/core'; import { Observable } from 'rxjs'; export declare const API_PLATFORM_DENORMALIZERS: InjectionToken; export interface Denormalizer { /** * Denormalize the given value into a a final value */ denormalize(value: any, type: Function, context?: object): Observable; /** * Checks if this denormalizer supports denormalizing the given value */ supportsDenormalization(value: any, type: Function): Observable; }