1 | import { YAMLScalar } from './yamlAST';
|
2 | export declare function parseYamlBoolean(input: string): boolean;
|
3 | export declare function parseYamlInteger(input: string): number;
|
4 | export declare function parseYamlFloat(input: string): number;
|
5 | export declare enum ScalarType {
|
6 | null = 0,
|
7 | bool = 1,
|
8 | int = 2,
|
9 | float = 3,
|
10 | string = 4,
|
11 | }
|
12 | export declare function determineScalarType(node: YAMLScalar): ScalarType;
|