mirror of
https://github.com/moltbot/moltbot.git
synced 2026-04-26 16:06:16 +00:00
10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
import type { DiscordSlashCommandConfig } from "../../config/types.discord.js";
|
|
|
|
export function resolveDiscordSlashCommandConfig(
|
|
raw?: DiscordSlashCommandConfig,
|
|
): Required<DiscordSlashCommandConfig> {
|
|
return {
|
|
ephemeral: raw?.ephemeral !== false,
|
|
};
|
|
}
|