@railzai/railz-visualizations
Version:
Railz.ai Visualizations
19 lines (18 loc) • 578 B
TypeScript
import { RVCreditScoreSummary, RVOptions } from '../../types';
export declare class RailzGaugeChart {
/**
* For whitelabeling styling
*/
readonly options: RVOptions;
readonly data: RVCreditScoreSummary;
readonly mode: string;
private containerRef?;
private _options;
private _data;
watchContainerRef(newValue: HTMLDivElement): void;
watchOptions(newValue: RVOptions, oldValue: RVOptions): Promise<void>;
watchData(newValue: RVOptions, oldValue: RVOptions): Promise<void>;
private propsUpdated;
componentWillLoad(): void;
render(): HTMLElement;
}