import { IHowToDirection as IBaseHowToDirection, IHowToSection as IBaseHowToSection, IHowToStep as IBaseHowToStep, IRecipe as IBaseRecipe, RecipeCategory, StepIdentifier } from '../recipe'; export interface ISendMultipleArgs { to?: any; from?: any; customArgs?: any; } export type ISendMultipleResult = any; export interface IDirectionSendMultiple extends IBaseHowToDirection { beforeMedia?: ISendMultipleArgs; afterMedia?: ISendMultipleResult; } export interface IStepSendMultiple extends IBaseHowToStep { identifier: StepIdentifier.sendMultiple; itemListElement: [IDirectionSendMultiple]; } export interface IHowToSection extends IBaseHowToSection { itemListElement: [IStepSendMultiple]; } export interface IRecipe extends IBaseRecipe { recipeCategory: RecipeCategory.sendEmailMessage; step: IHowToSection[]; }