web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.5 KiB

  1. /**
  2. * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. export type { Config } from '@jest/types';
  8. export type { AggregatedResult, SnapshotSummary, TestResult, } from '@jest/test-result';
  9. export { default as BaseReporter } from './BaseReporter';
  10. export { default as CoverageReporter } from './CoverageReporter';
  11. export { default as DefaultReporter } from './DefaultReporter';
  12. export { default as NotifyReporter } from './NotifyReporter';
  13. export { default as SummaryReporter } from './SummaryReporter';
  14. export { default as VerboseReporter } from './VerboseReporter';
  15. export type { Context, Reporter, ReporterOnStartOptions, SummaryOptions, Test, } from './types';
  16. export declare const utils: {
  17. formatTestPath: (config: import("@jest/types/build/Config").GlobalConfig | import("@jest/types/build/Config").ProjectConfig, testPath: string) => string;
  18. printDisplayName: (config: import("@jest/types/build/Config").ProjectConfig) => string;
  19. relativePath: (config: import("@jest/types/build/Config").GlobalConfig | import("@jest/types/build/Config").ProjectConfig, testPath: string) => {
  20. basename: string;
  21. dirname: string;
  22. };
  23. trimAndFormatPath: (pad: number, config: import("@jest/types/build/Config").GlobalConfig | import("@jest/types/build/Config").ProjectConfig, testPath: string, columns: number) => string;
  24. };