UNPKG

baldrick-broth

Version:
8 lines (7 loc) 273 B
import { type Result } from './railway.js'; import { type AnyDataValue } from './build-model.js'; export type LoadingStatus = Result<AnyDataValue, { message: string; filename: string; }>; export declare const readYaml: (filename: string) => Promise<LoadingStatus>;