import { BaseClientEvent } from '.'; import { RecipeId, UserId } from '../..'; /** * Fired when a user attempts to create or update a recipe. */ export interface EditRecipeAttemptedEvent extends BaseClientEvent { isSignedUp: boolean; user?: UserId; recipe?: RecipeId; } export declare const EditRecipeAttemptedEventName = "EditRecipeAttemptedEvent";