@evolvejs/core
Version:
An advanced Discord API wrapper with TS and JS support
29 lines (28 loc) • 607 B
TypeScript
import { IUser } from "./UserOptions";
declare enum expire_behavior {
Remove_role = 0,
Kick = 1
}
interface IGuildIntegrationAccount {
id: string;
name: string;
}
export interface ICreateGuildIntegration {
id: string;
type: string;
}
export interface IGuildIntegration {
id: string;
name: string;
type: string;
enabled: boolean;
syncing: boolean;
role_id: string;
enable_emoticons?: boolean;
expire_behavior: expire_behavior;
expire_grace_period: number;
user: IUser;
account: IGuildIntegrationAccount;
synced_at: string;
}
export {};