@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
12 lines (11 loc) • 411 B
TypeScript
import { HtBaseNode, HtPayloadLocale, HtQueueLocale } from './common';
import { HtNodeWithContentType } from './node-types';
export interface HtHandoffNode extends HtBaseNode {
type: HtNodeWithContentType.HANDOFF;
content: {
queue: HtQueueLocale[];
payload: HtPayloadLocale[];
has_auto_assign: boolean;
has_queue_position_changed_notifications_enabled: boolean;
};
}