9 lines
154 B
TypeScript
9 lines
154 B
TypeScript
declare global {
|
|
namespace App {
|
|
interface Locals {
|
|
user?: { sub: string; email?: string; firstName?: string } | null;
|
|
}
|
|
}
|
|
}
|
|
export {};
|