8 lines
274 B
TypeScript
8 lines
274 B
TypeScript
// This file contains common constants which can be used across the widget configuration file (index.ts), widget and component folders.
|
|
export const PROGRESSBAR_WIDGET_CONSTANT = "";
|
|
|
|
export enum BarType {
|
|
INDETERMINATE = "indeterminate",
|
|
DETERMINATE = "determinate",
|
|
}
|