Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 727cda3

Browse files
pkozlowski-opensourcekirjs
authored andcommitted
feat(core): mark linkedSignal API as public (#60865)
Follow up on the PR #60741 PR Close #60865
1 parent 9cb107c commit 727cda3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

‎packages/core/src/render3/reactivity/linked_signal.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ const identityFn = <T>(v: T) => v;
2222

2323
/**
2424
* Creates a writable signal whose value is initialized and reset by the linked, reactive computation.
25+
*
26+
* @publicApi
2527
*/
2628
export function linkedSignal<D>(
2729
computation: () => D,
@@ -34,7 +36,7 @@ export function linkedSignal<D>(
3436
*
3537
* Note: The computation is reactive, meaning the linked signal will automatically update whenever any of the signals used within the computation change.
3638
*
37-
* @developerPreview
39+
* @publicApi
3840
*/
3941
export function linkedSignal<S, D>(options: {
4042
source: () => S;

0 commit comments

Comments
 (0)