From 2fb5f216b1b6c54e087cb3729d965aff80f67cdb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Mar 2026 06:44:22 +0000 Subject: [PATCH] docs(entrypoints): add missing module docs Co-authored-by: okikio <17222836+okikio@users.noreply.github.com> --- _types.ts | 11 +++++++++++ helpers/operations/mod.ts | 10 ++++++++++ 2 files changed, 21 insertions(+) diff --git a/_types.ts b/_types.ts index 547801b..cb091cd 100644 --- a/_types.ts +++ b/_types.ts @@ -1,4 +1,15 @@ // @filename: _types.ts +/** + * Public observer and subscription types for the Observable entrypoints. + * + * @module + * + * This module collects the runtime-facing interfaces that show up whenever you + * subscribe to an Observable. It defines the enhanced `Observer` and + * `Subscription` shapes used by this package, then re-exports the lower-level + * spec types from `./_spec.ts` for callers that need proposal-aligned building + * blocks. + */ import type { SpecObserver, SpecSubscription } from "./_spec.ts"; import type { Symbol } from "./symbol.ts"; diff --git a/helpers/operations/mod.ts b/helpers/operations/mod.ts index ba395b0..173df5f 100644 --- a/helpers/operations/mod.ts +++ b/helpers/operations/mod.ts @@ -1,3 +1,13 @@ +/** + * Re-exported operator groups for the `./operations` entrypoint. + * + * @module + * + * This module gives callers one place to import the built-in Observable + * operations without knowing which submodule each operator lives in. It + * forwards the batch, combination, conditional, core, error, and timing + * operator groups that make up the public `./operations` surface. + */ export * from "./batch.ts"; export * from "./combination.ts"; export * from "./conditional.ts"; -- 2.51.2