Interface IProps

    Props

    interface IProps {
        cancelButtonProps?: ButtonProps;
        cancelButtonText?: string;
        children: ReactNode;
        initialValues?: object;
        loading?: boolean;
        okButtonProps?: ButtonProps;
        okButtonText?: string;
        onCancel?: (() => void);
        onOk?: ((values) => Promise<void>);
        title: string;
        visible: boolean;
    }

    Properties

    cancelButtonProps?: ButtonProps
    cancelButtonText?: string
    children: ReactNode
    initialValues?: object
    loading?: boolean
    okButtonProps?: ButtonProps
    okButtonText?: string
    onCancel?: (() => void)

    Type declaration

      • (): void
      • Returns void

    onOk?: ((values) => Promise<void>)

    Type declaration

      • (values): Promise<void>
      • Parameters

        • values: any

        Returns Promise<void>

    title: string
    visible: boolean

    Generated using TypeDoc and TypeDoc Airthium Plugin