File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11import { BasicLogger , BasicLoggerOptions , LDLogger } from '@launchdarkly/js-client-sdk-common' ;
22
33import { BrowserIdentifyOptions as LDIdentifyOptions } from './BrowserIdentifyOptions' ;
4- import { BrowserOptions as LDOptions } from './options' ;
54
65// The exported LDIdentifyOptions and LDOptions are the browser specific implementations.
76// These shadow the common implementations.
8- export type { LDIdentifyOptions , LDOptions } ;
7+ export type { LDIdentifyOptions } ;
98
109export type {
1110 AutoEnvAttributes ,
Original file line number Diff line number Diff line change 55 * Some code changes may still be required, for example {@link LDOptions} removes
66 * support for some previously available options.
77 */
8- import { LDContext , LDOptions } from '@launchdarkly/js-client-sdk-common' ;
8+ import { LDContext } from '@launchdarkly/js-client-sdk-common' ;
99
1010import { LDClient } from './LDClientCompat' ;
1111import LDClientCompatImpl from './LDClientCompatImpl' ;
12+ import { LDOptions } from './LDCompatOptions' ;
1213
1314export * from '../common' ;
14- export type { LDClient } ;
15+ export type { LDClient , LDOptions } ;
1516
1617/**
1718 * Creates an instance of the LaunchDarkly client. This version of initialization is for
Original file line number Diff line number Diff line change 1313import { AutoEnvAttributes } from '@launchdarkly/js-client-sdk-common' ;
1414
1515import { BrowserClient , LDClient } from './BrowserClient' ;
16- import { LDOptions } from './common ' ;
16+ import { BrowserOptions as LDOptions } from './options ' ;
1717
1818export * from './common' ;
19- export type { LDClient } ;
19+ export type { LDClient , LDOptions } ;
2020
2121/**
2222 * Creates an instance of the LaunchDarkly client.
You can’t perform that action at this time.
0 commit comments