You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
getRecipe:
http: GET /{name}
args:
name: RecipeName
returns: Recipe
docs: |
Retrieves a recipe for the given name.
@param name
The name of the recipe
typescript:
export interface IRecipeBookService {
createRecipe(createRecipeRequest: IRecipe): Promise<void>;
/**
* Retrieves a recipe for the given name.
*
* @param name
* The name of the recipe
*
*/
getRecipe(name: string): Promise<IRecipe>;
getAllRecipes(): Promise<Array<IRecipe>>;
deleteRecipe(name: string): Promise<void>;
}
The text was updated successfully, but these errors were encountered:
yaml definition:
typescript:
The text was updated successfully, but these errors were encountered: