( width: number, height: number, path: FrameSettingsPathDefinition )
| 52 | } |
| 53 | |
| 54 | const formatFramePath = ( |
| 55 | width: number, |
| 56 | height: number, |
| 57 | path: FrameSettingsPathDefinition |
| 58 | ): string => { |
| 59 | return path.map((command) => formatCommand(width, height, command)).join(' ') |
| 60 | } |
| 61 | |
| 62 | export { formatFramePath } |
no test coverage detected