fix(Modal): add more props to typings

This commit is contained in:
AAGaming
2022-07-25 15:29:38 -04:00
parent 279069ee34
commit 97997adfaf

View File

@@ -16,7 +16,13 @@ export interface ModalRootProps {
onMiddleButton?(): void;
onCancel?(): void;
onOK?(): void;
onEscKeypress?(): void;
className?: string;
modalClassName?: string;
bAllowFullSize?: boolean;
bDestructiveWarning?: boolean;
bDisableBackgroundDismiss?: boolean;
bHideCloseIcon?: boolean;
}
export const ModalRoot = findModuleChild((m) => {