UNPKG

recipe-ts-runtime

Version:

TypeScript run-time library for the Recipe framework

10 lines (9 loc) 327 B
import { Cake } from "./Cake"; export declare abstract class BaseIngredientHook<T> { private ingredientName; private snapshotClass; constructor(ingredientName: string, snapshotClass: Function); getIngredientName(): string; getSnapshotClass(): Function; abstract bake(ingredient: T, cake: Cake): void; }