mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-29 00:59:37 +07:00
12 lines
172 B
TypeScript
12 lines
172 B
TypeScript
import type { UserSchema } from "./db/schema/user";
|
|
|
|
declare global {
|
|
namespace Express {
|
|
interface Request {
|
|
user?: UserSchema | null;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|