@voiceflow/google-types
Version:
Google service types
11 lines • 449 B
TypeScript
import type { BaseNode, BaseRequest } from '@voiceflow/base-types';
import type { ButtonNode } from '../buttons/index.js';
export interface NodeInteraction extends BaseNode.Utils.SlotMappings {
intent: string;
nextIdIndex?: number;
}
export interface SharedNode extends Omit<BaseRequest.NodeButton, 'buttons'>, BaseNode.Utils.NodeNextIDs {
buttons?: ButtonNode[];
interactions: NodeInteraction[];
}
//# sourceMappingURL=base.d.ts.map