···11+---
22+'wonka': patch
33+---
44+55+Add missing `Symbol.observable` global declaration back to typings.
-6
src/helpers.ts
···11import { TalkbackFn, TeardownFn, Start, Push, SignalKind } from './types';
2233-declare global {
44- interface SymbolConstructor {
55- readonly observable: symbol;
66- }
77-}
88-93/** Placeholder {@link TeardownFn | teardown functions} that's a no-op.
104 * @see {@link TeardownFn} for the definition and usage of teardowns.
115 * @internal
+8
src/observable.ts
···11import { Source, SignalKind, TalkbackKind } from './types';
22import { push, start, talkbackPlaceholder, observableSymbol } from './helpers';
3344+// NOTE: This must be placed in an exported file for `rollup-plugin-dts`
55+// to include it in output typings files
66+declare global {
77+ interface SymbolConstructor {
88+ readonly observable: symbol;
99+ }
1010+}
1111+412/** A definition of the ES Observable Subscription type that is returned by
513 * {@link Observable.subscribe}
614 *