Type alias Interrupt<Value>

Interrupt<Value>: {
    ns?: string[];
    resumable?: boolean;
    value?: Value;
    when: "during" | string & {};
}

Type Parameters

  • Value = any

Type declaration

  • Optional ns?: string[]
  • Optional resumable?: boolean
  • Optional value?: Value
  • when: "during" | string & {}