UNPKG

screenkitten

Version:

A cross-platform Node.js library for taking screenshots on iOS simulators and Android devices/emulators

10 lines 413 B
import type { ScreenkittenOptions } from './types'; import { ScreenkittenIOS } from './ios'; import { ScreenkittenAndroid } from './android'; /** * Create a Screenkitten instance based on the provided options. */ export declare function screenkitten(options: ScreenkittenOptions): ScreenkittenAndroid | ScreenkittenIOS; export type * from './types'; export * from './errors'; //# sourceMappingURL=index.d.ts.map