diff --git a/packages/core/src/resource/resource.ts b/packages/core/src/resource/resource.ts index 9124299347f..db93093f050 100644 --- a/packages/core/src/resource/resource.ts +++ b/packages/core/src/resource/resource.ts @@ -46,7 +46,7 @@ import {StateKey, TransferState} from '../transfer_state'; * * @see [Async reactivity with resources](guide/signals/resource) * - * @experimental 19.0 + * @publicApi 22.0 */ export function resource( options: ResourceOptions & {defaultValue: NoInfer}, @@ -60,7 +60,7 @@ export function resource( * `resource` will cancel in-progress loads via the `AbortSignal` when destroyed or when a new * request object becomes available, which could prematurely abort mutations. * - * @experimental 19.0 + * @publicApi 22.0 * @see [Async reactivity with resources](guide/signals/resource) */ export function resource(options: ResourceOptions): ResourceRef;