export default Scripts; /** * @fileoverview Gets JavaScript file contents. */ declare class Scripts extends BaseGatherer { static symbol: symbol; /** @type {LH.Crdp.Debugger.ScriptParsedEvent[]} */ _scriptParsedEvents: LH.Crdp.Debugger.ScriptParsedEvent[]; /** @type {Array} */ _scriptContents: Array; /** * @param {LH.Crdp.Debugger.ScriptParsedEvent} params */ onScriptParsed(params: LH.Crdp.Debugger.ScriptParsedEvent): void; /** * @param {LH.Gatherer.Context} context */ startInstrumentation(context: LH.Gatherer.Context): Promise; /** * @param {LH.Gatherer.Context} context */ stopInstrumentation(context: LH.Gatherer.Context): Promise; getArtifact(): Promise; } import BaseGatherer from '../base-gatherer.js'; //# sourceMappingURL=scripts.d.ts.map