persona-community-5/.pnpm-store/v3/files/5d/1431ff638f73c6b2bbe593fe0767c7296bcf92d7914980701921c2c309c75012c1771b0b26ded2804dd6a56f6bb5be8512e71a3fdbdfad37e1b9074570a509
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

9 lines
241 B
Plaintext

import type { CodeKeywordDefinition, ErrorObject } from "../../types";
export type EnumError = ErrorObject<"enum", {
allowedValues: any[];
}, any[] | {
$data: string;
}>;
declare const def: CodeKeywordDefinition;
export default def;