TeleMarts / api /src /Types.ts
Mythus's picture
Upload 225 files
67edfce
raw
history blame contribute delete
225 Bytes
import { users } from '@prisma/client'
import { TelegramClient } from 'telegram'
declare module 'http' {
interface IncomingMessage {
tg?: TelegramClient,
user?: users,
userAuth?: any,
authKey?: string
}
}