handle validation error (#18766)

This commit is contained in:
Alan Ren
2022-03-17 19:43:02 -07:00
committed by GitHub
parent 3071a7b710
commit d6abcb892d
2 changed files with 15 additions and 0 deletions

View File

@@ -1089,6 +1089,10 @@ declare module 'azdata' {
* Issues of current state.
*/
issues?: { severity: DesignerIssueSeverity, description: string, propertyPath?: DesignerEditPath }[];
/**
* The input validation error.
*/
inputValidationError?: string;
}
/**
@@ -1118,6 +1122,10 @@ declare module 'azdata' {
* Format (mimeType) of the report
*/
mimeType: string;
/**
* The table schema validation error.
*/
schemaValidationError?: string;
}
}