puppeteer/src/templates/injected.ts.tmpl
jrandolf 292216652b
chore: add injection framework (#8862)
* chore: add injection framework
2022-08-31 10:50:22 +02:00

10 lines
228 B
Cheetah

import * as Poller from '../injected/Poller.js';
import * as util from '../injected/util.js';
declare global {
const InjectedUtil: Readonly<typeof Poller & typeof util>;
}
/** @internal */
export const source = SOURCE_CODE;