(type: string, message: string | void)
| 51 | type: string |
| 52 | |
| 53 | constructor(type: string, message: string | void) { |
| 54 | this.type = type |
| 55 | this.message = message |
| 56 | } |
| 57 | |
| 58 | static back(message: string | void) { |
| 59 | return new InputFlowAction("back", message) |
nothing calls this directly
no outgoing calls
no test coverage detected