@railzai/railz-visualizations
Version:
Railz.ai Visualizations
26 lines (25 loc) • 496 B
TypeScript
export declare class Loading {
/**
* Text to display at the bottom of the loading indicator
*/
readonly loadingText?: string;
/**
* Fill color of the loading indicator
*/
readonly fillColor?: string;
/**
* Width of the SVG Loading Indicator
*/
readonly width?: string;
/**
* Height of the SVG Loading Indicator
*/
readonly height?: string;
/**
* Style of the text
*/
readonly textStyle?: {
[key: string]: any;
};
render(): HTMLElement;
}