UNPKG

data-dashboard

Version:

A data-driven dashboard console for report widgets

6 lines (4 loc) 214 B
// DataDashboard ~~ MIT License export type Json = string | number | boolean | null | undefined | JsonObject | Json[]; export type JsonObject = { [key: string]: Json }; export type JsonData = JsonObject | Json[];