index.d.ts 514 B

123456789101112131415
  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. */
  8. import type { Expect, MatcherState as JestMatcherState, Matchers as MatcherInterface } from './types';
  9. declare const expectExport: Expect;
  10. declare namespace expectExport {
  11. type MatcherState = JestMatcherState;
  12. interface Matchers<R> extends MatcherInterface<R> {
  13. }
  14. }
  15. export = expectExport;