UNPKG

storycrawler

Version:

Utilities to build Storybook crawling tools with Puppeteer

13 lines (12 loc) 296 B
import { ChromeChannel } from './types'; export type FindOptions = { executablePath?: string; channel?: ChromeChannel; }; export declare function findChrome(options: FindOptions): Promise<{ executablePath: string; type: string; } | { executablePath: null; type: null; }>;