keep-vue
Version:
Keep Vue is an open-source component library built on top of Vue3 and Tailwind CSS. It offers a collection of pre-designed UI components and styles that you can easily integrate into your web applications.
10 lines (9 loc) • 333 B
TypeScript
import type { DrawerDirection } from "vaul-vue";
import { type ComputedRef } from "vue";
declare const useProvideDrawer: (position: ComputedRef<DrawerDirection>) => {
position: ComputedRef<DrawerDirection>;
};
declare function useDrawer(): {
position: ComputedRef<DrawerDirection>;
};
export { useDrawer, useProvideDrawer };