I want to initialize a generic class variable inside a generic class using a generic type, but I can't figure out if there is a way to do this.
Initializing with types works fine, it doesn't seem like it work with generics though.
type EventCallback<I, O> = (event: I) => O;
type ListenerList<K extends string | symbol | number, I, O, V extends EventCallback<I, O>> = {
[T in K]: V[];
};
const test: ListenerList<string, string, string, (event: any) => any> = {}; // Works fine
export default class EventProcesser<
K extends string | symbol | number,
I,
O,
V extends EventCallback<I, O>
> {
private listeners: ListenerList<K, I, O, V> = {}; // Error :(
}
I get the following error Type '{}' is not assignable to type 'ListenerList<K, I, O, V>'. Is there a way to do this?
ListenerListis assuming, that the object has at least one property. Adding a questionmark behind the[T in K]you are safe to go, because you are telling typescript, that there is at least zero properties in the object.