(options: DateOptions)
| 232 | } |
| 233 | |
| 234 | function handleRender(options: DateOptions) { |
| 235 | return (state: State, action: Prompt.Prompt.Action<State, globalThis.Date>) => { |
| 236 | return Action.$match(action, { |
| 237 | Beep: () => Effect.succeed(renderBeep), |
| 238 | NextFrame: ({ state }) => renderNextFrame(state, options), |
| 239 | Submit: () => renderSubmission(state, options) |
| 240 | }) |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | function handleProcess(options: DateOptions) { |
| 245 | return (input: Terminal.UserInput, state: State) => { |
no test coverage detected
searching dependent graphs…