/
githubmirror
/
zulip
Обзор
Документация
Войти
/
githubmirror
/
zulip
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
9.0
web/src/plotly.js.d.ts
19 строк
471 B
Junyao Chen
stats: Install @types/plotly.js for type check.
17 авг 2023, 21:35
17 авг 2023, 21:35
6757c5a
Код
Авторство
О чём код?
// An internal type extracted from @types/plotly.js // pie and bar are both trace modules from the traces subdirectory type TraceModule = { [key: string]: unknown; moduleType: "trace"; name: string; categories: string[]; meta: Record<string, unknown>; }; declare module "plotly.js/lib/pie" { const PlotlyPie: TraceModule; export = PlotlyPie; } declare module "plotly.js/lib/bar" { const PlotlyBar: TraceModule; export = PlotlyBar; }