UNPKG

vue-devui

Version:

DevUI components based on Vite and Vue3

7 lines (6 loc) 277 B
import type { SetupContext } from 'vue'; import type { CodeReviewProps } from '../code-review-types'; export declare function useCodeReviewFold(props: CodeReviewProps, ctx: SetupContext): { isFold: import("vue").Ref<boolean>; toggleFold: (status?: boolean) => void; };