-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problems getting Arquero to find it's types in Typescript #332
Comments
To reproduce this:
|
This is happening in Angular 17 as well X [ERROR] TS2304: Cannot find name 'WindowState'. [plugin angular-compiler]
tsconfig.json is /* To learn more about this file see: https://angular.io/config/tsconfig. */ |
The bolded change appears to have fixed the issue for me. { |
I'd like to point out that the above bolded change isn't really a fix. It's basically just a way to ignore type errors that Typescript would otherwise report. This is a library that we are trying to uptake, but we are not interested in turning on |
Looks like #346 may address this issue |
I keep on getting messages like this, suggesting that arquero cannot find it's type declarations:
node_modules/arquero/dist/types/op/window-functions.d.ts:25:35 - error TS2304: Cannot find name 'WindowState'.
25 export type WindowValue = (state: WindowState) => any;
~~~~~~~~~~~
node_modules/arquero/dist/types/op/window-functions.d.ts:33:11 - error TS2304: Cannot find name 'AggregateInit'.
33 init: AggregateInit;
~~~~~~~~~~~~~
The text was updated successfully, but these errors were encountered: