summary refs log tree commit diff
path: root/src/util/schemas/ApplicationAuthorizeSchema.ts
blob: 1a0aae0f8438cfdcbc2f5ad0584a79cbc15db05e (plain) (blame)
1
2
3
4
5
6
7
export interface ApplicationAuthorizeSchema {
	authorize: boolean;
	guild_id: string;
	permissions: string;
	captcha_key?: string;
	code?: string;	// 2fa code
}