Interface IProps

    Props

    interface IProps {
        children: ReactNode;
        loading?: boolean;
        onCancel: (() => void);
        onOk: (() => Promise<void>);
        title: string;
        visible: boolean;
    }

    Properties

    children: ReactNode
    loading?: boolean
    onCancel: (() => void)
    onOk: (() => Promise<void>)
    title: string
    visible: boolean

    Generated using TypeDoc and TypeDoc Airthium Plugin