@alexanderson1993/cooklang-ts
Version:
Cooklang-TS is a TypeScript library for parsing and manipulating Cooklang recipes.
12 lines (11 loc) • 342 B
TypeScript
export interface ImageURLOptions {
step?: number;
extension?: 'png' | 'jpg';
}
export declare function getImageURL(name: string, options?: ImageURLOptions): string;
import Recipe from './Recipe';
import Parser from './Parser';
export { Recipe, Parser };
export * from './Recipe';
export * from './Parser';
export * from './cooklang';