persona-community-5/.pnpm-store/v3/files/c4/fdfa68e3d3e14c8bb7204473033ea9ec47c174df39629525184d4d38c68afe1cd99ac6f66359cbc27928f238f18c6bdf46046120ad53138fd80860f77919f3
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

10 lines
300 B
Plaintext

import ast = require("../src/yamlAST");
export interface TestError {
message: string;
line: number;
column: number;
isWarning: boolean;
}
export declare function testErrors(input: string, expectedErrors: TestError[]): void;
export declare function safeLoad(input: any): ast.YAMLNode;