gil.js
Version:
A powerful Node.js library for interacting with the Guilded API.
21 lines • 605 B
TypeScript
export type CreateGroupBody = {
/** The name of the group. */
name: string;
/** The description of the group. */
description?: string;
/** The ID of the emote of the group. */
emoteId?: number;
/** Whether the group is public. */
isPublic?: boolean;
};
export type UpdateGroupBody = {
/** The name of the group. */
name: string;
/** The description of the group. */
description?: string;
/** The ID of the emote of the group. */
emoteId?: number;
/** Whether the group is public. */
isPublic?: boolean;
};
//# sourceMappingURL=group.d.ts.map