We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have an Interactions.OlInteractionSelect with a filter. In an older version (2.0.1), it was allowing the feature to pass like below:
const selectInteactionFilter = (feature:any) => { return feature.values_.name !== undefined; };
After upgrading, I'm getting the following error: Type '(feature: any) => boolean' is not assignable to type '() => boolean'.
Type '(feature: any) => boolean' is not assignable to type '() => boolean'.
on OlInteractionSelect.vue.d.ts(23, 5), this is how the filter is defined: filter?: (() => boolean) | undefined;
filter?: (() => boolean) | undefined;
Shouldn't the definition include passing a filter argument through to the function?
├── [email protected] └── [email protected]
It's happening in VSCode, not related to OS or Browser, but I'm using:
The text was updated successfully, but these errors were encountered:
8226b16
No branches or pull requests
I have an Interactions.OlInteractionSelect with a filter. In an older version (2.0.1), it was allowing the feature to pass like below:
After upgrading, I'm getting the following error:
Type '(feature: any) => boolean' is not assignable to type '() => boolean'.
on OlInteractionSelect.vue.d.ts(23, 5), this is how the filter is defined:
filter?: (() => boolean) | undefined;
Shouldn't the definition include passing a filter argument through to the function?
├── [email protected]
└── [email protected]
It's happening in VSCode, not related to OS or Browser, but I'm using:
The text was updated successfully, but these errors were encountered: