2026-03-16 21:16:32 -07:00

10 lines
271 B
TypeScript

import type { DiscordSlashCommandConfig } from "openclaw/plugin-sdk/config-runtime";
export function resolveDiscordSlashCommandConfig(
raw?: DiscordSlashCommandConfig,
): Required<DiscordSlashCommandConfig> {
return {
ephemeral: raw?.ephemeral !== false,
};
}