import { ThemeSize } from "../../theme/types.js"; import { CommandCompactEmits, CommandCompactProps, CommandCompactSlots, CommandSingleOptionData, CommandUi } from "@soybeanjs/headless/command"; import { ClassValue } from "@soybeanjs/headless/types"; //#region src/components/command/types.d.ts /** * Properties for the Command component. */ interface CommandProps extends CommandCompactProps { /** Root class. */ class?: ClassValue; /** * Visual size of the component. */ size?: ThemeSize; /** * Per-slot class overrides for the component. */ ui?: Partial; } /** * Events for the Command component. */ type CommandEmits = CommandCompactEmits; /** * Slots for the Command component. */ type CommandSlots = CommandCompactSlots; //#endregion export { CommandEmits, CommandProps, CommandSlots };