Type alias TRenderFunctionResult
TRenderFunctionResult: {
onDestroy?: (() => Promise<boolean>);
onHide?: (() => Promise<boolean>);
onShow?: (() => Promise<void>);
}
Type declaration
-
Optional
onDestroy?: (() => Promise<boolean>)
-
- (): Promise<boolean>
-
Returns Promise<boolean>
-
Optional
onHide?: (() => Promise<boolean>)
-
- (): Promise<boolean>
-
Returns Promise<boolean>
-
Optional
onShow?: (() => Promise<void>)
-
- (): Promise<void>
-
Returns Promise<void>
Type which is used to render an custom html code. Must return a function, which will be called if the panel is destroyed.
Result, that must be provided by the Render Function.