import { DialogEmits, DialogProps, DialogSlots } from "../dialog/types.js"; import { Side } from "@soybeanjs/headless/types"; //#region src/components/drawer/types.d.ts /** * Properties for the Drawer component. */ interface DrawerProps extends DialogProps { /** * Side placement of the component. */ side?: Side; } /** * Events for the Drawer component. */ type DrawerEmits = DialogEmits; /** * Slots for the Drawer component. */ type DrawerSlots = DialogSlots; //#endregion export { DrawerEmits, DrawerProps, DrawerSlots };