Skip to content

Commit

Permalink
Fix SimpleMeshLayerProps.wireframe and SimpleMeshLayerProps._instance…
Browse files Browse the repository at this point in the history
…d type (visgl#7556)
  • Loading branch information
thpica authored Jan 6, 2023
1 parent 48023ed commit 2ce355e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,12 @@ type _SimpleMeshLayerProps<DataT> = {
* setting _instanced to false interpreted mesh positions as lnglat deltas.
* @default true
*/
_instanced?: true; // TODO - formalize API
_instanced?: boolean; // TODO - formalize API
/**
* Whether to render the mesh in wireframe mode.
* @default false
*/
wireframe?: false;
wireframe?: boolean;
/**
* Material props for lighting effect.
*
Expand Down

0 comments on commit 2ce355e

Please sign in to comment.