Mirror: 🎩 A tiny but capable push & pull stream library for TypeScript and Flow
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: Fix missing declare keyword on ambient enums (#159)

authored by kitten.sh and committed by

GitHub 6682fb5f b9ada756

+7 -2
+5
.changeset/light-cougars-enjoy.md
··· 1 + --- 2 + 'wonka': patch 3 + --- 4 + 5 + Fix missing `declare` keyword on internal ambient enums.
+2 -2
src/types.d.ts
··· 6 6 * the {@link Start} signal, to tell a {@link Source} to either send a new value (pulling) or stop 7 7 * sending values altogether (cancellation). 8 8 */ 9 - export enum TalkbackKind { 9 + export declare enum TalkbackKind { 10 10 /** Instructs the {@link Source} to send the next value. */ 11 11 Pull = 0, 12 12 /** Instructs the {@link Source} to stop sending values and cancels it. */ ··· 41 41 * @see {@link Start} for the data structure of the start signal. 42 42 * @see {@link Push} for the data structure of the push signal, carrying values. 43 43 */ 44 - export enum SignalKind { 44 + export declare enum SignalKind { 45 45 /** 46 46 * Informs the {@link Sink} that it's being called by a {@link Source}. 47 47 *