@schema-render/core-react
Version:
Through a set of simple JSON Schema, efficiently build a set of forms.
20 lines (19 loc) • 465 B
TypeScript
/**
* 校验状态枚举值
*/
export declare enum EValidationStatus {
success = "success",
warning = "warning",
error = "error"
}
export type IValidationStatus = keyof typeof EValidationStatus;
export declare const VALID_VALIDATION_STATUS: EValidationStatus[];
/**
* 整体表单布局枚举值
*/
export declare enum ELayout {
normal = "normal",
autoFill = "autoFill",
autoFit = "autoFit"
}
export type ILayout = keyof typeof ELayout;