ngx-http-annotations
Version:
This is a library to angular to use http request via decorator/annotations
7 lines (6 loc) • 345 B
TypeScript
import { InjectionToken } from '@angular/core';
export declare const HTTP_ANNOTATIONS_USE_MOCKS: InjectionToken<boolean>;
export declare const HTTP_ANNOTATIONS_USE_DELAY: InjectionToken<number>;
export declare const RESOURCE_METADATA_ROOT = "resources_metadata";
export declare const NO_DELAY = 0;
export declare const MOCK_DEFAULT_DELAY = 500;