UNPKG

@dagonmetric/ng-config

Version:

Configuration and options service for Angular applications.

20 lines (19 loc) 732 B
/** * @license * Copyright DagonMetric. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found under the LICENSE file in the root directory of this source tree. */ import { ModuleWithProviders } from '@angular/core'; import { HttpConfigProviderOptions } from './http-config-provider-options'; /** * The `NGMODULE` for providing `HttpConfigProvider`. */ export declare class HttpConfigProviderModule { /** * Call this method to provide options for configuring the `HttpConfigProvider`. * @param options An option object for `HttpConfigProvider`. */ static configure(options: HttpConfigProviderOptions): ModuleWithProviders<HttpConfigProviderModule>; }