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
The selection helper functions not, range, all etc don't seem to typecheck when placed inside a select verb. Here is the compile error I'm getting:
TS2345: Argument of type 'Function' is not assignable to parameter of type 'Select'.
Type 'Function' is not assignable to type 'RenameMap'.
Index signature is missing in type 'Function'.
76 .select(aq.not("A", "B"));
~~~~~~~~~~~~~~~
Perhaps the return type of the selction helpers should be SelectHelper rather than Function?
export function not(...selection: any[]): SelectHelper;
Thanks for the amazing library by the way!!
The text was updated successfully, but these errors were encountered:
The selection helper functions
not
,range
,all
etc don't seem to typecheck when placed inside aselect
verb. Here is the compile error I'm getting:Perhaps the return type of the selction helpers should be
SelectHelper
rather thanFunction
?Thanks for the amazing library by the way!!
The text was updated successfully, but these errors were encountered: