/** * Official `yaml` (eemeli, YAML 1.2) implementation of the framework's YAML * extension contracts. * * Provides both the narrow `SkillDocumentParserProvider` used at the Skill * document trust boundary and the general `YamlParserProvider` the framework's * `#std/yaml/parse` compatibility shim resolves. * * @module extensions/ext-yaml */ import type { ExtensionFactory } from "veryfront/extensions"; declare const extYaml: ExtensionFactory; export default extYaml; export { createStdYamlSkillDocumentParserProvider, createYamlParser, parseYamlSource, } from "./adapter.js"; //# sourceMappingURL=index.d.ts.map