src/modules/progress-indicator/entities/progress-indicator-config.entity.intf.ts
Interface of progress indicator config
Properties |
topic |
topic:
|
Type : string
|
The topic that the progress indicator will subscribe to. |
type |
type:
|
Type : StarkProgressIndicatorType
|
Type of progress indicator: SPINNER, ... |
import { StarkProgressIndicatorType } from "./progress-indicator-type.entity";
/**
* Interface of progress indicator config
*/
export interface StarkProgressIndicatorConfig {
/**
* The topic that the progress indicator will subscribe to.
*/
topic: string;
/**
* Type of progress indicator: SPINNER, ...
*/
type: StarkProgressIndicatorType;
}