spec-page.d.ts 344 B

1234567
  1. import type { NewSpecPageOptions, SpecPage } from '@stencil/core/internal';
  2. /**
  3. * Creates a new spec page for unit testing
  4. * @param opts the options to apply to the spec page that influence its configuration and operation
  5. * @returns the created spec page
  6. */
  7. export declare function newSpecPage(opts: NewSpecPageOptions): Promise<SpecPage>;