flagmint-js-sdk 1.2.14 → 1.2.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/flagmint.cjs.js +5 -5
- package/dist/flagmint.es.js +176 -163
- package/dist/flagmint.umd.js +8 -8
- package/dist/sdk/core/client.d.ts +2 -1
- package/package.json +1 -1
|
@@ -87,10 +87,11 @@ export declare class FlagClient<T = unknown, C extends Record<string, any> = Rec
|
|
|
87
87
|
/**
|
|
88
88
|
* Wait for the client to be ready.
|
|
89
89
|
*/
|
|
90
|
-
ready(): Promise<void>;
|
|
90
|
+
ready(timeoutMs?: number): Promise<void>;
|
|
91
91
|
/**
|
|
92
92
|
* Evaluate flags locally (for preview mode).
|
|
93
93
|
*/
|
|
94
94
|
private evaluateLocally;
|
|
95
|
+
private waitForFlags;
|
|
95
96
|
}
|
|
96
97
|
export {};
|