-
Notifications
You must be signed in to change notification settings - Fork 176
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
Problem with graph.tsx #28
Comments
try importing this in Graph.tsx |
I am also having the same issue, and have attempted to import this but it has made no difference and I am still getting the same error as OP. |
Me too, Guys how did you solve it? |
Hi, i got it. interface IProps { interface PerspectiveViewerElement extends HTMLElement { render() { componentDidMount() {
} componentDidUpdate() { |
I was getting this error , then i changed Row[] to Row
as suggested in the issues of this task
Type '{ price_abc: number; price_def: number; ratio: number; timestamp: Date; upper_bound: number; lower_bound: number; trigger_alert: number | undefined; }' is not assignable to type 'Row[]'.
Object literal may only specify known properties, and 'price_abc' does not exist in type 'Row[]'. TS2322
After changing I got this error...........
Type error: Argument of type 'Row' is not assignable to parameter of type 'TableData'.
Type 'Row' is not assignable to type '{ [key: string]: string; }'.
Index signature is missing in type 'Row'. TS2345
The text was updated successfully, but these errors were encountered: