We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This feature could be used in observable-like generic classes/interfaces:
interface EventSource<Args extends any[]> { observe(listener: (...args: Args)): void; map<T>(mapping: (...args: Args) => T): EventSource<[T]>; }
Currently the only way I know of is to fallback to any.
any