UNPKG

recipe-ts-runtime

Version:

TypeScript run-time library for the Recipe framework

10 lines (9 loc) 346 B
import { AbstractOven } from "./AbstractOven"; import { BaseIngredientHook } from "./BaseIngredientHook"; export declare class BackendOven extends AbstractOven { private readonly hooks; private readonly ingredientTypes; bake(json: string): string; registerHook<T>(hook: BaseIngredientHook<T>): void; private bakeIngredient; }