summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test-d/puppeteer.test-d.ts
blob: 11128f15f7d4c79bbc8235e51d17d21ef47ff511 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import puppeteer, {
  connect,
  defaultArgs,
  executablePath,
  launch,
} from 'puppeteer';
import {expectType} from 'tsd';

expectType<typeof launch>(puppeteer.launch);
expectType<typeof connect>(puppeteer.connect);
expectType<typeof defaultArgs>(puppeteer.defaultArgs);
expectType<typeof executablePath>(puppeteer.executablePath);