mirror of
https://github.com/qwertyforce/scenery.git
synced 2025-05-01 21:20:09 +00:00
20 lines
351 B
TypeScript
20 lines
351 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
api_domain: string,
|
|
recaptcha_site_key: string,
|
|
reverse_search_url: string,
|
|
domain: string,
|
|
ipns: string
|
|
}
|
|
}
|
|
}
|
|
|
|
declare module 'http' {
|
|
interface IncomingMessage {
|
|
session: any
|
|
}
|
|
}
|
|
|
|
export {}
|