Skip to content

Commit 090d631

Browse files
committed
fix: export types
1 parent 462e952 commit 090d631

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

packages/browser-sdk/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ export class ReflagClient {
491491
*
492492
* Must be called before calling other SDK methods.
493493
*
494-
* @param bootstrap - Whether to bootstrap the client, fetching flags, sending user, and company events.
494+
* @param bootstrap - Whether to bootstrap the client: fetching flags, sending user, and company events.
495495
*/
496496
async initialize(bootstrap = true) {
497497
const start = Date.now();

packages/node-sdk/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ export { EdgeClient, EdgeClientOptions } from "./edgeClient";
33
export type {
44
Attributes,
55
BatchBufferOptions,
6+
BootstrappedFlags,
67
CacheStrategy,
78
ClientOptions,
89
Context,

packages/react-sdk/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ export function ReflagProvider({
242242
/**
243243
* Props for the ReflagBootstrappedProvider.
244244
*/
245-
type ReflagBootstrappedProps = Omit<
245+
export type ReflagBootstrappedProps = Omit<
246246
ReflagProps,
247247
"user" | "company" | "otherContext"
248248
> & {

0 commit comments

Comments
 (0)