index.d.ts 441 Bytes
export interface PopupConfigInterface {
  borderWidth: number
  borderHeight: number
  borderColor: string
  boxShadowColor: string
  linearLeftColor: string
  linearRightColor: string
  arrowColor: string
  lineColor: string
  fontColor: string
  fontSize: number
  fontWeight: number
  fontContent: string
  labelColor: string
  valueColor: string
  placement: string
}
export interface PopupConfigData {
  label: string
  value: string
}