Initial commit

This commit is contained in:
Mohit Nagar
2025-09-27 12:08:31 +05:30
committed by GitHub
commit f283f6043f
47 changed files with 9418 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';
import 'supertest';
declare module 'supertest' {
export interface Response {
headers: Record<string, string[]>;
body: {
error: string;
users: IUser[];
};
}
}