fix: Make parentContext optional in ModalOptions type (#1784)
* Make parentContext optional in ModalOptions type * Use non-primitive object type for parentContextpull/1799/head
parent
f5902ec954
commit
ff995a744e
|
@ -128,7 +128,7 @@ export interface ModalOptions {
|
||||||
*/
|
*/
|
||||||
onOk?: () => any;
|
onOk?: () => any;
|
||||||
|
|
||||||
parentContext: Object;
|
parentContext?: object;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ModalConfirm {
|
export interface ModalConfirm {
|
||||||
|
|
Loading…
Reference in New Issue