mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 20:51:42 +03:00
9 lines
259 B
TypeScript
9 lines
259 B
TypeScript
|
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/users/create_dm.ts
|
||
|
|
||
|
|
||
|
/** https://discord.com/developers/docs/resources/user#create-dm */
|
||
|
export interface CreateDM {
|
||
|
/** The recipient to open a DM channel with */
|
||
|
recipientId: string;
|
||
|
}
|