persona-community-5/.pnpm-store/v3/files/a4/0096ed7c55037827c3d258b2e065932c79f0b3a9a4d6338729aaf04655ac4ded5dff5be1a3171e4655b27ae986166351133ffb22a068137d03d213643f7453
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

13 lines
416 B
Plaintext

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;