diff --git a/ts/dx.all.d.ts b/ts/dx.all.d.ts index 11d652a77a76..dc34a97ae8a9 100644 --- a/ts/dx.all.d.ts +++ b/ts/dx.all.d.ts @@ -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; + export type Scalar = + | undefined + | null + | string + | String + | number + | Number + | bigint + | BigInteger + | boolean + | Boolean + | Date + | Function + | Symbol + | Array; /** * [descr:template] */