@dagonmetric/ng-config-firebase-remote-config
Version:
Google Firebase Remote Config integration of @dagonMetric/ng-config for Angular applications.
21 lines (20 loc) • 822 B
TypeScript
/**
* @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 { NgZone } from '@angular/core';
import { Observable } from 'rxjs';
import { ConfigProvider, ConfigSection } from '@dagonmetric/ng-config';
import { FirebaseRemoteConfigProviderOptions } from './firebase-remote-config-provider-options';
export declare class FirebaseRemoteConfigProvider implements ConfigProvider {
private readonly options;
private readonly ngZone;
get name(): string;
private readonly isBrowser;
private readonly rc;
constructor(options: FirebaseRemoteConfigProviderOptions, platformId: Object, ngZone: NgZone);
load(): Observable<ConfigSection>;
}