LoginSignup
8
0

deck.glをTypeScriptで組むときのポイント

Last updated at Posted at 2023-12-03

これは MIERUNE AdventCalendar 2023 4日目の記事です。
昨日は @koyamagon さんによる 事務員がChatGPTを使ったアレコレについて書くよ でした。

データ可視化ライブラリdeck.glのインポート文は

import { Deck } from '@deck.gl/core';

と、公式のドキュメントでは指定されています
これでも動くのですが、TypeScriptで組んだ時に型の恩恵を受けることができません
VSCodeの場合、Lintの設定次第ではエラーとして赤い波線が表示されてしまいます
そこで、以下のように明示的にインポートすると良いです

import { Deck } from '@deck.gl/core/typed';

明日は@KEI_YAMAさんの記事です!お楽しみにー

8
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
0