( state: NumberState, leadingSymbol: string, trailingSymbol: string, options: IntegerOptionsReq, renderOptions?: RenderOptions | undefined, submitted: boolean = false )
| 2810 | } |
| 2811 | |
| 2812 | const renderNumberOutput = ( |
| 2813 | state: NumberState, |
| 2814 | leadingSymbol: string, |
| 2815 | trailingSymbol: string, |
| 2816 | options: IntegerOptionsReq, |
| 2817 | renderOptions?: RenderOptions | undefined, |
| 2818 | submitted: boolean = false |
| 2819 | ) => { |
| 2820 | const value = renderNumberInput(state, submitted, renderOptions) |
| 2821 | return renderPrompt(value, options.message, leadingSymbol, trailingSymbol, renderOptions) |
| 2822 | } |
| 2823 | |
| 2824 | const renderNumberNextFrame = Effect.fnUntraced(function*(state: NumberState, options: IntegerOptionsReq) { |
| 2825 | const figures = yield* platformFigures |
no test coverage detected