一种方法是
class ObservableStore<T> {
constructor(arg: T[]) {
// ...
}
update(value: (current: T) => T): void { }
subscribe(fn: (current: T) => void): void { }
}
type Props<T> = Record<string, ObservableStore<T>>;
class OtherClass<T> {
constructor(private props: Props<T> = {}) {
for (let [key, value] of Object.entries(props)) {
// has to cast `this` for dynamic properties here, perhaps there is another workaround
if (value instanceof ObservableStore) value.subscribe($data => (this as unknown as Record<string, T>)[key] = $data);
}
}
}
const someInstance = new OtherClass<string[]>({ someStore: new ObservableStore<string[]>([]) });