Circus
    Preparing search index...

    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.

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Methods

    Properties

    destroy?: () => Promise<void>

    Destroys the session.

    This releases all memory and items used by this object. If nothing is used, then this may do nothing.

    Methods