13 lines
310 B
TypeScript
13 lines
310 B
TypeScript
|
|
|
|
declare namespace Express {
|
|
export interface Request {
|
|
user?: Document<unknown, {}, {
|
|
pass?: string | undefined;
|
|
omdb_key?: string | undefined;
|
|
twitch_client_id?: string | undefined;
|
|
twitch_client_secret?: string | undefined;
|
|
mac_address?: string | undefined;
|
|
}>
|
|
}
|
|
} |