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