@highcharts/dashboards
Version:
Highcharts Dashboards framework
57 lines (52 loc) • 1.04 kB
TypeScript
/* *
*
* (c) 2010-2025 Torstein Honsi
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* */
/* *
*
* Declarations
*
* */
export interface HTMLAttributes {
// [key: string]: (boolean|number|string|Function|undefined);
'aria-expanded'?: boolean;
'aria-label'?: string;
'aria-live'?: string;
'aria-atomic'?: boolean;
checked?: boolean;
class?: string;
className?: string;
colspan?: number;
defaultChecked?: boolean;
disabled?: boolean;
href?: string;
htmlFor?: string;
id?: string;
name?: string;
onclick?: any;
onload?: any;
placeholder?: string;
scope?: string;
textContent?: string;
title?: string;
type?: string;
rel?: string;
role?: string;
src?: string;
rowspan?: number;
summary?: string;
tabindex?: number;
valign?: 'bottom'|'middle'|'top';
value?: string;
}
/* *
*
* Default Export
*
* */
export default HTMLAttributes;