survey-vue3-ui
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
12 lines (11 loc) • 551 B
TypeScript
import type { Action, QuestionPanelDynamicModel } from "survey-core";
export type IPanelDynamicActionProps = {
item: Action;
data?: any;
} | {
item?: Action;
data: any;
};
export declare function usePanelDynamicAction(props: IPanelDynamicActionProps): import("vue").ComputedRef<QuestionPanelDynamicModel>;
export declare function useIsActionEnabled(props: IPanelDynamicActionProps): import("vue").ComputedRef<boolean>;
export declare function useIsAddActionEnabled(props: IPanelDynamicActionProps): import("vue").ComputedRef<boolean>;