From c487928d22a5edb561be7f0beb482cbfba918bae Mon Sep 17 00:00:00 2001 From: Pawel Kozlowski Date: Tue, 18 Mar 2025 14:49:05 +0100 Subject: [PATCH] feat(core): mark the toSignal API as stable This commit marks the toSignal API as stable. --- packages/core/rxjs-interop/src/to_signal.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/core/rxjs-interop/src/to_signal.ts b/packages/core/rxjs-interop/src/to_signal.ts index 8a565330d93a..9963a9f4222d 100644 --- a/packages/core/rxjs-interop/src/to_signal.ts +++ b/packages/core/rxjs-interop/src/to_signal.ts @@ -117,8 +117,6 @@ export function toSignal( * If the subscription should persist until the `Observable` itself completes, the `manualCleanup` * option can be specified instead, which disables the automatic subscription teardown. No injection * context is needed in this configuration as well. - * - * @developerPreview */ export function toSignal( source: Observable | Subscribable,