UNPKG

@pagopa/dx-cli

Version:

A CLI useful to manage DX tools.

9 lines (8 loc) 273 B
import { Result } from "neverthrow"; /** * Parses YAML content and returns the parsed object. * * @param content - The YAML content to parse * @returns Result with parsed YAML object or error */ export declare const parseYaml: (content: string) => Result<any, Error>;