Initial commit

This commit is contained in:
Mohit Nagar
2025-10-02 18:23:29 +05:30
committed by GitHub
commit 02401a3e9d
59 changed files with 11270 additions and 0 deletions

14
spec/types/supertest/index.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
import { IUser } from '@src/models/user.model';
import 'supertest';
declare module 'supertest' {
export interface Response {
headers: Record<string, string[]>;
body: {
error: string;
users: IUser[];
};
}
}