UNPKG

eurostat-map

Version:

Reusable library to quickly create and customise web maps showing Eurostat data directly retrieved from Eurostat database.

17 lines (16 loc) 395 B
/** * Statistical configuration for sparkline maps. */ export interface SparkStatConfig { /** Eurostat dataset code. */ eurostatDatasetCode: string /** Filters. */ filters?: Record<string, any> /** Unit text. */ unitText?: string transform?: (value: number) => number /** Dates. */ dates: string[] /** Labels. */ labels?: string[] }