Interface IInstallProps

interface IInstallProps {
    cfg: ISPConfig | ISPConfig[];
    onCompleted?: (() => any);
    onError?: ((cfg) => void);
}

Properties

cfg: ISPConfig | ISPConfig[]
onCompleted?: (() => any)

Type declaration

    • (): any
    • Returns any

onError?: ((cfg) => void)

Type declaration

    • (cfg): void
    • Parameters

      • cfg: ISPConfig

      Returns void