Files
urbanLifeline/dify/web/app/components/workflow/hooks/use-DSL.ts
2025-12-01 17:21:38 +08:00

12 lines
277 B
TypeScript

import { useHooksStore } from '@/app/components/workflow/hooks-store'
export const useDSL = () => {
const exportCheck = useHooksStore(s => s.exportCheck)
const handleExportDSL = useHooksStore(s => s.handleExportDSL)
return {
exportCheck,
handleExportDSL,
}
}