Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions packages/sdk/browser/src/compat/LDClientCompat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ import { LDClient as LDCLientBrowser } from '../LDClient';
* incorrect. Any function which optionally returned a promise based on a callback had incorrect
* typings. Those have been corrected in this implementation.
*/
export interface LDClient
extends Omit<LDCLientBrowser, 'close' | 'flush' | 'identify' | 'identifyResult'> {
export interface LDClient extends Omit<
LDCLientBrowser,
'close' | 'flush' | 'identify' | 'identifyResult'
> {
/**
* Identifies a context to LaunchDarkly.
*
Expand Down
8 changes: 6 additions & 2 deletions packages/shared/sdk-server/src/Migration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,12 @@ class Migration<
TMigrationWrite,
TMigrationReadInput = any,
TMigrationWriteInput = any,
> implements LDMigration<TMigrationRead, TMigrationWrite, TMigrationReadInput, TMigrationWriteInput>
{
> implements LDMigration<
TMigrationRead,
TMigrationWrite,
TMigrationReadInput,
TMigrationWriteInput
> {
private readonly _execution: LDSerialExecution | LDConcurrentExecution;

private readonly _errorTracking: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ export interface PollingDataSourceConfiguration {
* and can switch between streaming and polling automatically to provide redundancy.
*/
export interface StandardDataSourceOptions
extends Omit<StreamingDataSourceConfiguration, 'type'>,
extends
Omit<StreamingDataSourceConfiguration, 'type'>,
Omit<PollingDataSourceConfiguration, 'type'> {
dataSourceOptionsType: 'standard';
}
Expand Down
Loading