Type aliases
AutocompleteFilter
Type declaration
Optional matchSorter?: never
AutocompleteMatchSorter
Type declaration
Optional filterOptions?: never
AutocompleteOption
AutocompleteOption: { label: string; value: any }
Chart
Chart
: WhisperComponent<Chart> & { chartTitle
?: string; heightToWidthRatio
?: number; horizontalGridLines
?: boolean; horizontalLineTotal
?: number; margin
?: { bottom
?: number; left
?: number; right
?: number; top
?: number }; series
: Series<SeriesType>[]; showCrosshair
?: boolean; verticalGridLines
?: boolean; verticalLineTotal
?: number; xAxis
?: boolean; xAxisLabel
?: string; xAxisPadding
?: number; xAxisScale
?: AxisScale; xAxisTickLabelAngle
?: number; xAxisTickTotal
?: number; yAxis
?: boolean; yAxisLabel
?: string; yAxisPadding
?: number; yAxisScale
?: AxisScale; yAxisTickLabelAngle
?: number; yAxisTickTotal
?: number }Email
Email
: InputComponent<Email, string>LineSeries
Line
Series
: Series<Line> & { strokeWidth
?: number }NumberInput
Number
Input
: InputComponent<Number, number> & { max
?: number; min
?: number; step
?: number }Password
Password
: InputComponent<Password, string>Select
Select
: SelectComponent<Select> & { excludeDefaultOption
?: boolean; label
?: string; onSelect
: WhisperHandlerWithParam<number>; options
: string[]; selected
?: number; tooltip
?: string }SeriesData
SeriesData: { x: number | string | Date; y: number | string | Date }
Type declaration
x: number | string | Date
y: number | string | Date
StateMap
StateMap: Map<string, string | boolean | number | string[]>
WhisperHandler
Whisper
Handler
: (error
: Error | undefined, whisper
: Whisper) => voidType declaration
- (error: Error | undefined, whisper: Whisper): void
WhisperHandlerWithParam
Whisper
Handler
With
Param
<T>: (error
: Error | undefined, param
: T, whisper
: Whisper) => voidType parameters
Type declaration
- (error: Error | undefined, param: T, whisper: Whisper): void
Parameters
error: Error | undefined
param: T
Returns void
Options to configure how the filter search behaves
(Note: filterOptions and matchSorter can't be used together)