connector-local.d.ts 447 B

1234567
  1. import type * as d from '@stencil/core/internal';
  2. import { ScreenshotConnector } from './connector-base';
  3. export declare class ScreenshotLocalConnector extends ScreenshotConnector {
  4. publishBuild(results: d.ScreenshotBuildResults): Promise<d.ScreenshotBuildResults>;
  5. getScreenshotCache(): Promise<d.ScreenshotCache>;
  6. updateScreenshotCache(cache: d.ScreenshotCache, buildResults: d.ScreenshotBuildResults): Promise<d.ScreenshotCache>;
  7. }