chore: add mobile app

This commit is contained in:
2026-02-07 22:33:02 +01:00
parent db34640acc
commit e89384ad4e
29327 changed files with 3886944 additions and 12 deletions
+31
View File
@@ -0,0 +1,31 @@
/**
* A tiny but capable push & pull stream library for TypeScript and Flow.
*
* @remarks
* Wonka is a lightweight iterable and observable library and exposes a set of helpers to create
* streams, which are sources emitting multiple values, which allow you to create, transform, and
* consume event streams or iterable sets of data.
*
* It's loosely based on the Callbag spec: {@link https://github.com/callbag/callbag}
* @packageDocumentation
*/
export type {
TeardownFn,
Signal,
Sink,
Source,
Operator,
TypeOfSource,
Subscription,
Observer,
Subject,
} from './types';
export * from './sources';
export * from './operators';
export * from './sinks';
export * from './combine';
export * from './observable';
export * from './callbag';
export * from './pipe';