(name: string)
| 125 | export const finishAction = Symbol('finish') |
| 126 | export type FinishAction = typeof finishAction |
| 127 | export const finishOption = (name: string): Choice<FinishAction> => ({ name: `Finish editing ${name}.`, value: finishAction }) |
| 128 | |
| 129 | export const helpAction = Symbol('help') |
| 130 | export type HelpAction = typeof helpAction |
no outgoing calls
no test coverage detected