···11# wonka
2233+## 6.3.5
44+55+### Patch Changes
66+77+- Exclude `sourcesContent` from published sourcemaps
88+ Submitted by [@kitten](https://github.com/kitten) (See [`68e608f`](https://github.com/0no-co/wonka/commit/68e608f46244e82d41c952ecfa1d7f0096e168f6))
99+1010+## 6.3.4
1111+1212+### Patch Changes
1313+1414+- Add missing `Symbol.observable` global declaration back to typings
1515+ Submitted by [@kitten](https://github.com/kitten) (See [#168](https://github.com/0no-co/wonka/pull/168))
1616+317## 6.3.3
418519### Patch Changes
···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 *
+1-1
src/sources.ts
···118118 * for the JS Iterable protocol.
119119 */
120120export function fromIterable<T>(iterable: Iterable<T> | AsyncIterable<T>): Source<T> {
121121- if (iterable[Symbol.asyncIterator]) return fromAsyncIterable(iterable as AsyncIterable<T>);
121121+ if (iterable[asyncIteratorSymbol()]) return fromAsyncIterable(iterable as AsyncIterable<T>);
122122 return sink => {
123123 const iterator = iterable[Symbol.iterator]();
124124 let ended = false;