unleash-client
Version:
Unleash Client for Node
41 lines • 1.36 kB
TypeScript
import { CustomHeaders, CustomHeadersFunction } from './headers';
import { Strategy } from './strategy';
import { ClientFeaturesResponse } from './feature';
import { HttpOptions } from './http-options';
import { TagFilter } from './tags';
import { BootstrapOptions } from './repository/bootstrap-provider';
import { StorageProvider } from './repository/storage-provider';
import { RepositoryInterface } from './repository';
export type Mode = {
type: 'polling';
format: 'delta' | 'full';
} | {
type: 'streaming';
};
export interface UnleashConfig {
appName: string;
environment?: string;
instanceId?: string;
url: string;
refreshInterval?: number;
projectName?: string;
metricsInterval?: number;
metricsJitter?: number;
namePrefix?: string;
disableMetrics?: boolean;
backupPath?: string;
strategies?: Strategy[];
customHeaders?: CustomHeaders;
customHeadersFunction?: CustomHeadersFunction;
timeout?: number;
repository?: RepositoryInterface;
httpOptions?: HttpOptions;
tags?: Array<TagFilter>;
bootstrap?: BootstrapOptions;
bootstrapOverride?: boolean;
storageProvider?: StorageProvider<ClientFeaturesResponse>;
disableAutoStart?: boolean;
skipInstanceCountWarning?: boolean;
experimentalMode?: Mode;
}
//# sourceMappingURL=unleash-config.d.ts.map