UNPKG

yaml-ast-parser-custom-tags

Version:

This is a custom maintained fork specifically for the YAML Language server.

13 lines (12 loc) 415 B
import { YAMLScalar } from './yamlAST'; export declare function parseYamlBoolean(input: string): boolean; export declare function parseYamlInteger(input: string): number; export declare function parseYamlFloat(input: string): number; export declare enum ScalarType { null = 0, bool = 1, int = 2, float = 3, string = 4 } export declare function determineScalarType(node: YAMLScalar): ScalarType;