Circus
    Preparing search index...

    Interface IZCircusReactHook<T, P>

    Represents a driver for a react hook.

    interface IZCircusReactHook<T, P> {
        destroy?: () => Promise<void>;
        current(): Promise<T>;
        rerender(props?: P): Promise<T>;
    }

    Type Parameters

    • T
    • P

    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