mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-29 18:48:12 +00:00
7 lines
236 B
TypeScript
7 lines
236 B
TypeScript
import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types";
|
|
export type IfKeywordError = ErrorObject<"if", {
|
|
failingKeyword: string;
|
|
}, AnySchema>;
|
|
declare const def: CodeKeywordDefinition;
|
|
export default def;
|