13 lines
247 B
TypeScript
13 lines
247 B
TypeScript
export interface IMasterLoadingComponentProps {
|
|
|
|
/**
|
|
* Loading is active {true} or not {false}
|
|
*
|
|
* @type {boolean}
|
|
* @memberof IMasterLoadingComponentProps
|
|
*/
|
|
activeLoading: boolean
|
|
|
|
handleLoading: (status: boolean) => void
|
|
}
|