Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

index.d.ts 1.8KB

1234567891011121314151617181920212223242526
  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").ProjectConfig | import("@jest/types/build/Config").GlobalConfig, testPath: string) => string;
  18. getResultHeader: (result: import("@jest/test-result").TestResult, globalConfig: import("@jest/types/build/Config").GlobalConfig, projectConfig?: import("@jest/types/build/Config").ProjectConfig | undefined) => string;
  19. getSummary: (aggregatedResults: import("@jest/test-result").AggregatedResult, options?: import("./types").SummaryOptions | undefined) => string;
  20. printDisplayName: (config: import("@jest/types/build/Config").ProjectConfig) => string;
  21. relativePath: (config: import("@jest/types/build/Config").ProjectConfig | import("@jest/types/build/Config").GlobalConfig, testPath: string) => {
  22. basename: string;
  23. dirname: string;
  24. };
  25. trimAndFormatPath: (pad: number, config: import("@jest/types/build/Config").ProjectConfig | import("@jest/types/build/Config").GlobalConfig, testPath: string, columns: number) => string;
  26. };