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