/** @module Survey-Taking Communication: Host-to-Plugin */ import { QuestionResponse } from "./questions"; import { PluginStateDataDef } from './questions/index'; /** * The set of handlers implemented by the Question Plugin which can be called by the Survey-Taking UI */ export interface PluginHandler { onHostHasChangedResponse?: (response: ResponseType) => void; onHostHasChangedPluginStateData?: (stateData: PluginStateData) => void; } //# sourceMappingURL=plugin-handler.d.ts.map