File: globals.d.ts

package info (click to toggle)
node-ts-jest 29.1.1%2B~cs0.2.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,408 kB
  • sloc: javascript: 2,573; makefile: 19
file content (18 lines) | stat: -rw-r--r-- 796 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
declare global {
  const beforeAll: typeof import('@jest/globals').beforeAll
  const beforeEach: typeof import('@jest/globals').beforeEach
  const afterAll: typeof import('@jest/globals').afterAll
  const afterEach: typeof import('@jest/globals').afterEach
  const describe: typeof import('@jest/globals').describe
  const fdescribe: typeof import('@jest/globals').fdescribe
  const xdescribe: typeof import('@jest/globals').xdescribe
  const it: typeof import('@jest/globals').it
  const fit: typeof import('@jest/globals').fit
  const xit: typeof import('@jest/globals').xit
  const test: typeof import('@jest/globals').test
  const xtest: typeof import('@jest/globals').xtest
  const expect: typeof import('@jest/globals').expect
  const jest: typeof import('@jest/globals').jest
}

export {}