(state: State, key: "msg" | "part" | "call" | "perm" | "ask", prefix: string)
| 252 | } |
| 253 | |
| 254 | function take(state: State, key: "msg" | "part" | "call" | "perm" | "ask", prefix: string): string { |
| 255 | state[key] += 1 |
| 256 | return `demo_${prefix}_${state[key]}` |
| 257 | } |
| 258 | |
| 259 | function feed(state: State, event: Event): void { |
| 260 | const out = reduceSessionData({ |
no outgoing calls
no test coverage detected