From 11db761b0335f8af899436de3b646738dc38f34a Mon Sep 17 00:00:00 2001 From: fkwp Date: Mon, 11 May 2026 20:25:09 +0200 Subject: [PATCH] mark $and as public as is a very useful function which could be used by the sdk target --- src/utils/observable.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utils/observable.ts b/src/utils/observable.ts index 353dc877..c32254db 100644 --- a/src/utils/observable.ts +++ b/src/utils/observable.ts @@ -116,6 +116,8 @@ export function getValue(state$: Observable): T { /** * Creates an Observable that has a value of true whenever all its inputs are * true. + * + * @public */ export function and$(...inputs: Observable[]): Observable { return combineLatest(inputs, (...flags) => flags.every((flag) => flag));