You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
723 B
20 lines
723 B
|
3 weeks ago
|
let globalNotificationProgressCallBack : (() => void) | null = () => { }
|
||
|
|
let globalNotificationProgressFinishCallBack : (() => void) | null = () => { }
|
||
|
|
|
||
|
|
export function setGlobalNotificationProgressCallBack(callBack : (() => void) | null) : void {
|
||
|
|
globalNotificationProgressCallBack = callBack
|
||
|
|
}
|
||
|
|
|
||
|
|
export function getGlobalNotificationProgressCallBack() : (() => void) | null {
|
||
|
|
return globalNotificationProgressCallBack
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
export function setGlobalNotificationProgressFinishCallBack(callBack : (() => void) | null) : void {
|
||
|
|
globalNotificationProgressFinishCallBack = callBack
|
||
|
|
}
|
||
|
|
|
||
|
|
export function getGlobalNotificationProgressFinishCallBack() : (() => void) | null {
|
||
|
|
return globalNotificationProgressFinishCallBack
|
||
|
|
}
|