( confirm: string, leadingSymbol: string, trailingSymbol: string, options: ConfirmOptionsReq, renderOptions?: RenderOptions | undefined )
| 1480 | } |
| 1481 | |
| 1482 | const renderConfirmOutput = ( |
| 1483 | confirm: string, |
| 1484 | leadingSymbol: string, |
| 1485 | trailingSymbol: string, |
| 1486 | options: ConfirmOptionsReq, |
| 1487 | renderOptions?: RenderOptions | undefined |
| 1488 | ) => renderPrompt(confirm, options.message, leadingSymbol, trailingSymbol, renderOptions) |
| 1489 | |
| 1490 | const renderConfirmNextFrame = Effect.fnUntraced(function*(state: ConfirmState, options: ConfirmOptionsReq) { |
| 1491 | const figures = yield* platformFigures |
no test coverage detected