Skip to content

Commit

Permalink
Update dx.all.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaKhD committed Sep 30, 2022
1 parent 075870f commit d10a87d
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion ts/dx.all.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1760,7 +1760,21 @@ declare module DevExpress.core {
/**
* @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution.
*/
type Scalar = string | number | Function | Date | Boolean | Array<unknown>;
export type Scalar =
| undefined
| null
| string
| String
| number
| Number
| bigint
| BigInteger
| boolean
| Boolean
| Date
| Function
| Symbol
| Array<unknown>;
/**
* [descr:template]
*/
Expand Down

0 comments on commit d10a87d

Please sign in to comment.