You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
523 B
19 lines
523 B
/** |
|
* Type declarations for D3.js and related modules |
|
* |
|
* These declarations allow TypeScript to recognize D3 imports without requiring |
|
* detailed type definitions. For a project requiring more type safety, consider |
|
* using the @types/d3 package and its related sub-packages. |
|
*/ |
|
|
|
// Core D3 library |
|
declare module "d3"; |
|
|
|
// Force simulation module for graph layouts |
|
declare module "d3-force"; |
|
|
|
// DOM selection and manipulation module |
|
declare module "d3-selection"; |
|
|
|
// Drag behavior module |
|
declare module "d3-drag";
|
|
|