persona-community-5/.pnpm-store/v3/files/8a/12e6a0e7a286c23a3f91ccc3f63305acb55e45107cd9883130018c7c08b3e69a6d3fec19da33bd4a7974146d6f6a944489c676daa4940bfb817d6092b7b122
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

15 lines
431 B
Plaintext

import Mark = require("./mark");
declare class YAMLException {
message: string;
reason: string;
name: string;
mark: Mark;
isWarning: boolean;
private static CLASS_IDENTIFIER;
static isInstance(instance: any): instance is YAMLException;
getClassIdentifier(): string[];
constructor(reason: string, mark?: Mark, isWarning?: boolean);
toString(compact?: boolean): any;
}
export = YAMLException;