Update index.ts

pull/5563/head
Nathan Herrmann 5 years ago committed by GitHub
parent 21a9c94dc6
commit 1496a2675a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -113,7 +113,7 @@ export function writable<T>(value: T, start: StartStopNotifier<T> = noop): Writa
}
/** One or more `Readable`s. */
type Stores = Readable<any> | Readable<any>[];
type Stores = Readable<any> | Array<Readable<any>>;
/** One or more values from `Readable` stores. */
type StoresValues<T> = T extends Readable<infer U> ? U :

Loading…
Cancel
Save