You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Use named tuple types
This applies a few improvements to how things are named, and uses the new TypeScript named tuple type feature to make complex commands which require tuple inputs more readable.
Example:
Before:
```
xgroup(delconsumer_key_groupname_consumername?: ["DELCONSUMER", [string, string, string]]): Promise<unknown>;
```
After:
```
xgroup(
delconsumer?: [
delconsumer: "DELCONSUMER",
key_groupname_consumername: [key: string, groupname: string, consumername: string]
]
): Promise<unknown>;
```
* downlevel in a loop, until stabilised
Workaround for sandersn/downlevel-dts#50
Repro (bash):
Result:
Expected:
This can be worked around by running
downlevel-dts
multiple times, but it's hard to know how many!The text was updated successfully, but these errors were encountered: