/* * * * (c) 2009-2026 Highsoft AS * * A commercial license may be required depending on use. * See www.highcharts.com/license * * * Authors: * - Karol KoƂodziej * * */ /* * * * Imports * * */ import type DataConnectorOptions from './DataConnectorOptions'; /* * * * Declarations * * */ /** * Options of the GoogleSheetsConnector. */ export interface HTMLTableConnectorOptions extends DataConnectorOptions { /** * The corresponding connector type. */ type: 'HTMLTable'; /** * The id of the HTML data table element to load or a reference to the HTML. */ htmlTable: string | HTMLElement; } /* * * * Default Export * * */ export default HTMLTableConnectorOptions;