Skip to content

Commit 0b040a5

Browse files
chore: Remove @internal tag to fix build errors
1 parent 13d01d1 commit 0b040a5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/shared/sdk-server/src/store/serialization.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,12 @@ function tryParse(data: string): any {
238238
}
239239

240240
/**
241-
* @internal
241+
* This function is intended for usage inside LaunchDarkly SDKs.
242+
* This function should NOT be used by customer applications.
243+
* This function may be changed or removed without a major version.
244+
*
245+
* @param payload Payload data from launchdarkly.
246+
* @returns The revived and processed data.
242247
*/
243248
export function reviveFullPayload(payload: FlagsAndSegments): FlagsAndSegments {
244249
Object.values(payload?.flags || []).forEach((flag) => {

0 commit comments

Comments
 (0)