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)

    Type declaration

      • (): void
      • Returns void

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

    Type declaration

      • (): Promise<void>
      • Returns Promise<void>

    title: string
    visible: boolean

    Generated using TypeDoc and TypeDoc Airthium Plugin