6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
import type { SuperTest, Test } from 'supertest'
|
|
import type { Server } from 'http'
|
|
|
|
declare module 'supertest' {
|
|
function supertest(app: Server): SuperTest<Test>
|
|
}
|