@nativescript/firebase-remote-config
Version:
NativeScript Firebase - Remote Config
147 lines (84 loc) • 3.82 kB
TypeScript
declare class FIRConfigUpdateListenerRegistration extends NSObject {
static alloc(): FIRConfigUpdateListenerRegistration; // inherited from NSObject
static new(): FIRConfigUpdateListenerRegistration; // inherited from NSObject
remove(): void;
}
declare var FIRNamespaceGoogleMobilePlatform: string;
declare class FIRRemoteConfig extends NSObject implements NSFastEnumeration {
static alloc(): FIRRemoteConfig; // inherited from NSObject
static new(): FIRRemoteConfig; // inherited from NSObject
static remoteConfig(): FIRRemoteConfig;
static remoteConfigWithApp(app: FIRApp): FIRRemoteConfig;
configSettings: FIRRemoteConfigSettings;
readonly lastFetchStatus: FIRRemoteConfigFetchStatus;
readonly lastFetchTime: Date;
[Symbol.iterator](): Iterator<any>;
activateWithCompletion(completion: (p1: boolean, p2: NSError) => void): void;
addOnConfigUpdateListener(listener: (p1: FIRRemoteConfigUpdate, p2: NSError) => void): FIRConfigUpdateListenerRegistration;
allKeysFromSource(source: FIRRemoteConfigSource): NSArray<string>;
configValueForKey(key: string): FIRRemoteConfigValue;
configValueForKeySource(key: string, source: FIRRemoteConfigSource): FIRRemoteConfigValue;
defaultValueForKey(key: string): FIRRemoteConfigValue;
ensureInitializedWithCompletionHandler(completionHandler: (p1: NSError) => void): void;
fetchAndActivateWithCompletionHandler(completionHandler: (p1: FIRRemoteConfigFetchAndActivateStatus, p2: NSError) => void): void;
fetchWithCompletionHandler(completionHandler: (p1: FIRRemoteConfigFetchStatus, p2: NSError) => void): void;
fetchWithExpirationDurationCompletionHandler(expirationDuration: number, completionHandler: (p1: FIRRemoteConfigFetchStatus, p2: NSError) => void): void;
keysWithPrefix(prefix: string): NSSet<string>;
objectForKeyedSubscript(key: string): FIRRemoteConfigValue;
setDefaults(defaults: NSDictionary<string, NSObject>): void;
setDefaultsFromPlistFileName(fileName: string): void;
}
declare const enum FIRRemoteConfigError {
Unknown = 8001,
Throttled = 8002,
InternalError = 8003,
}
declare var FIRRemoteConfigErrorDomain: string;
declare const enum FIRRemoteConfigFetchAndActivateStatus {
SuccessFetchedFromRemote = 0,
SuccessUsingPreFetchedData = 1,
Error = 2,
}
declare const enum FIRRemoteConfigFetchStatus {
NoFetchYet = 0,
Success = 1,
Failure = 2,
Throttled = 3,
}
declare class FIRRemoteConfigSettings extends NSObject {
static alloc(): FIRRemoteConfigSettings; // inherited from NSObject
static new(): FIRRemoteConfigSettings; // inherited from NSObject
fetchTimeout: number;
minimumFetchInterval: number;
}
declare const enum FIRRemoteConfigSource {
Remote = 0,
Default = 1,
Static = 2,
}
declare var FIRRemoteConfigThrottledEndTimeInSecondsKey: string;
declare class FIRRemoteConfigUpdate extends NSObject {
static alloc(): FIRRemoteConfigUpdate; // inherited from NSObject
static new(): FIRRemoteConfigUpdate; // inherited from NSObject
readonly updatedKeys: NSSet<string>;
}
declare const enum FIRRemoteConfigUpdateError {
StreamError = 8001,
NotFetched = 8002,
MessageInvalid = 8003,
Unavailable = 8004,
}
declare var FIRRemoteConfigUpdateErrorDomain: string;
declare class FIRRemoteConfigValue extends NSObject implements NSCopying {
static alloc(): FIRRemoteConfigValue; // inherited from NSObject
static new(): FIRRemoteConfigValue; // inherited from NSObject
readonly JSONValue: any;
readonly boolValue: boolean;
readonly dataValue: NSData;
readonly numberValue: number;
readonly source: FIRRemoteConfigSource;
readonly stringValue: string;
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
}
declare var FirebaseRemoteConfigVersionNumber: number;
declare var FirebaseRemoteConfigVersionString: interop.Reference<number>;