Skip to content

Commit

Permalink
ValidationCallbackData: make value type more wide (T1081540) (DevExpr…
Browse files Browse the repository at this point in the history
  • Loading branch information
ksercs authored May 11, 2022
1 parent a59a923 commit 27e6ce0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/ui/validation_rules.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @public
*/
export interface ValidationCallbackData {
value?: string | number;
value?: any;
rule: any;
validator: any;
data?: any;
Expand Down
2 changes: 1 addition & 1 deletion ts/dx.all.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22588,7 +22588,7 @@ declare module DevExpress.ui {
static isMaterial(theme: string): boolean;
}
export interface ValidationCallbackData {
value?: string | number;
value?: any;
rule: any;
validator: any;
data?: any;
Expand Down

0 comments on commit 27e6ce0

Please sign in to comment.