Interface IZCircusAction<TContext>

Represents an action with a given context.

interface IZCircusAction<TContext> {
    context: TContext;
    name: ZCircusActionType;
}

Type Parameters

  • TContext = any

Properties

Properties

context: TContext