mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
import superagent = require('superagent');
|
|
import type { ObjectLiteral } from 'typeorm';
|
|
|
|
/**
|
|
* Make `SuperTest<T>` string-indexable.
|
|
*/
|
|
declare module 'supertest' {
|
|
interface SuperTest<T extends superagent.SuperAgentRequest>
|
|
extends superagent.SuperAgent<T>,
|
|
Record<string, any> {}
|
|
}
|