mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-09-19 12:14:27 +08:00
17 lines
282 B
TypeScript
17 lines
282 B
TypeScript
export * from '@tmagic/form-schema';
|
|
|
|
export interface ValidateError {
|
|
message: string;
|
|
field: string;
|
|
}
|
|
|
|
export interface ChangeRecord {
|
|
propPath?: string;
|
|
value: any;
|
|
}
|
|
|
|
export interface ContainerChangeEventData {
|
|
modifyKey?: string;
|
|
changeRecords?: ChangeRecord[];
|
|
}
|