forked from MapComplete/MapComplete
Docs: improve typing
This commit is contained in:
parent
ac9681e6c4
commit
d19719afc3
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ export abstract class Store<T> implements Readable<T> {
|
||||||
|
|
||||||
public bindD<X>(
|
public bindD<X>(
|
||||||
f: (t: Exclude<T, undefined | null>) => Store<X>,
|
f: (t: Exclude<T, undefined | null>) => Store<X>,
|
||||||
extraSources: UIEventSource<object>[] = []
|
extraSources: Store<any>[] = []
|
||||||
): Store<X> {
|
): Store<X> {
|
||||||
return this.bind((t) => {
|
return this.bind((t) => {
|
||||||
if (t === null) {
|
if (t === null) {
|
||||||
|
|
Loading…
Reference in a new issue