Interface IZCircusSetup<T>

Represents a step to setup the circus.

interface IZCircusSetup<T = IZCircusDriver> {
    destroy(): Promise<void>;
    setup(): Promise<T>;
}

Type Parameters

  • T = IZCircusDriver

    The type of data the setup will return. Defaults to a circus driver.

Implemented by

Methods

Methods