ut-tools
Version:
Build and Release management automation package.
6 lines (5 loc) • 341 B
TypeScript
import type { YamlParserResult as _YamlParserResult } from '@stoplight/yaml';
import type { IParser } from './types';
export declare type YamlParserResult<T> = Omit<_YamlParserResult<T>, 'comments'>;
export declare const parseYaml: (input: string) => YamlParserResult<unknown>;
export declare const Yaml: IParser<YamlParserResult<unknown>>;