gil.js
Version:
A powerful Node.js library for interacting with the Guilded API.
12 lines • 353 B
TypeScript
import { EmbedPayload } from "../payloads";
export interface CreateMessageBody extends UpdateMessageBody {
isPrivate?: boolean;
isSilent?: boolean;
replyMessageIds?: string[];
}
export type UpdateMessageBody = {
content?: string;
hiddenLinkPreviewUrls?: string[];
embeds?: EmbedPayload[];
};
//# sourceMappingURL=message.d.ts.map