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.
10 lines (9 loc) • 322 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>;