testing-utils.d.ts 467 B

123456
  1. import type * as d from '@stencil/core/internal';
  2. export declare function shuffleArray(array: any[]): any[];
  3. export declare function expectFiles(fs: d.InMemoryFileSystem, filePaths: string[]): void;
  4. export declare function doNotExpectFiles(fs: d.InMemoryFileSystem, filePaths: string[]): void;
  5. export declare function getAppScriptUrl(config: d.Config, browserUrl: string): string;
  6. export declare function getAppStyleUrl(config: d.Config, browserUrl: string): string;