aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/global.d.ts
blob: 8c7a117ded94de0c0fa1fc92586e510a76adc24b (plain)
1
2
3
4
5
6
7
8
9
import { BushClient } from './discord-akairo/BushClient';
declare global {
	namespace NodeJS {
		export interface Global {
			client: BushClient;
		}
	}
	const client: BushClient;
}