We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 832a0e9 commit a8984acCopy full SHA for a8984ac
.gitignore
@@ -61,4 +61,5 @@ typings/
61
.next
62
63
# ignore for now
64
-package-lock.json
+package-lock.json
65
+yarn.lock
deck.gl__layers/index.d.ts
@@ -348,7 +348,7 @@ declare module '@deck.gl/layers/scatterplot-layer/scatterplot-layer' {
348
getColor?: ((d: D) => RGBAColor) | RGBAColor;
349
getFillColor?: ((d: D) => RGBAColor) | RGBAColor;
350
getLineColor?: ((d: D) => RGBAColor) | RGBAColor;
351
- getLineWidth?: ((d: D) => RGBAColor) | RGBAColor;
+ getLineWidth?: ((d: D) => number) | number;
352
}
353
export default class ScatterplotLayer<D> extends Layer<D> {
354
constructor(props: ScatterplotLayerProps<D>);
0 commit comments