UNPKG

recipe-ts-runtime

Version:

TypeScript run-time library for the Recipe framework

10 lines (9 loc) 311 B
import { Ingredient } from "./Ingredient"; export declare class KeyedIngredient extends Ingredient { private key; constructor(name: string, domain: string); protected setKey(key: string | null): void; getKey(): string | null; keyed(key: string | null): KeyedIngredient; toJSON(): any; }