/** * @file Type Definitions - Command * @module toggle-pkg-types/types/Command */ /** * Toggle commands. */ type Command = 'off' | 'on' export type { Command as default }