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 tried this:
import {table} from "arquero"; const myTable = table({ x: [1610109901000, 1610109902000, 1610109903000, 1610109904000], y: [600, 610, 590, 602] });
I got a warning from IntelliJ (both in javascript and in typescript): Invalid number of arguments, expected 2
This is because the names parameter of the table function is not marked as optional.
names
table
arquero/src/verbs/index.js
Lines 84 to 96 in 3083ad3
Add the following code to your jsdoc: @param {string[]?} names
@param {string[]?} names
I would also suggest to review the typings of all functions in your code 😄
The text was updated successfully, but these errors were encountered:
Thanks. I updated the JSDoc and released v2.1.1.
Sorry, something went wrong.
No branches or pull requests
Problem
I tried this:
I got a warning from IntelliJ (both in javascript and in typescript): Invalid number of arguments, expected 2
This is because the
names
parameter of thetable
function is not marked as optional.arquero/src/verbs/index.js
Lines 84 to 96 in 3083ad3
How to fix
Add the following code to your jsdoc:
@param {string[]?} names
I would also suggest to review the typings of all functions in your code 😄
The text was updated successfully, but these errors were encountered: