@carbon/ibm-products-web-components
Version:
Carbon for IBM Products Web Components
26 lines • 731 B
TypeScript
/**
* @license
*
* Copyright IBM Corp. 2025
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import { LitElement } from 'lit';
/**
* @element c4p-checklist-chart
*/
declare class CDSChecklistChart extends LitElement {
/**
* A number between 0 and 1 which indicates the progress of checklist
*/
value: number;
connectedCallback(): void;
private _updateChart;
static get observedAttributes(): string[];
attributeChangedCallback(name: any, oldValue: any, newValue: any): void;
render(): symbol;
static styles: any;
}
export default CDSChecklistChart;
//# sourceMappingURL=checklist-chart.d.ts.map