( outPath: string, options?: LinuxScreenshotOptions, )
| 1 | import { resolveLinuxToolProvider, type LinuxScreenshotOptions } from './tool-provider.ts'; |
| 2 | |
| 3 | export async function screenshotLinux( |
| 4 | outPath: string, |
| 5 | options?: LinuxScreenshotOptions, |
| 6 | ): Promise<void> { |
| 7 | await resolveLinuxToolProvider().screenshot!.capture(outPath, options); |
| 8 | } |
no test coverage detected