summary refs log tree commit diff
path: root/src/schemas/uncategorised/GuildSubscriptionsBulkSchema.ts
blob: f4c8a1ae5f8f2f1aa68ac71f15739bc92c4905db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { LazyRequestSchema } from "../gateway/LazyRequestSchema";

export interface GuildSubscriptionsBulkSchema {
	subscriptions: { [key: string]: GuildSubscriptionSchema };
}

export type GuildSubscriptionSchema = Omit<LazyRequestSchema, "guild_id">;

export const GuildSubscriptionsBulkSchema = {
	$subscriptions: Object,
};