@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
13 lines (11 loc) • 382 B
text/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
}
}