/** * @file Utilities - isCommandEvent * @module kronk/utils/isCommandEvent */ import type { CommandEvent } from '@flex-development/kronk/events'; /** * Check if `value` is a {@linkcode CommandEvent}. * * @category * utils * * @this {void} * * @param {unknown} value * The thing to check * @return {value is CommandEvent} * `true` if `value` looks like a `CommandEvent`, `false` otherwise */ declare function isCommandEvent(this: void, value: unknown): value is CommandEvent; export default isCommandEvent;