@ts-defold/types 1.2.29 → 1.2.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +7 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/// <reference types="lua-types/5.1" />
|
|
3
3
|
/// <reference types="@typescript-to-lua/language-extensions" />
|
|
4
4
|
|
|
5
|
-
// DEFOLD. stable version 1.6.
|
|
5
|
+
// DEFOLD. stable version 1.6.2 (708bbcc6985d4cf3719829603972a39895a03a07)
|
|
6
6
|
// =^..^= =^..^= =^..^= =^..^= =^..^= =^..^= =^..^= //
|
|
7
7
|
|
|
8
8
|
|
|
@@ -5414,6 +5414,11 @@ declare namespace image {
|
|
|
5414
5414
|
*/
|
|
5415
5415
|
export let TYPE_LUMINANCE: any
|
|
5416
5416
|
|
|
5417
|
+
/**
|
|
5418
|
+
* luminance image type
|
|
5419
|
+
*/
|
|
5420
|
+
export let TYPE_LUMINANCE_ALPHA: any
|
|
5421
|
+
|
|
5417
5422
|
/**
|
|
5418
5423
|
* RGB image type
|
|
5419
5424
|
*/
|
|
@@ -5436,6 +5441,7 @@ declare namespace image {
|
|
|
5436
5441
|
- `image.TYPE_RGB`
|
|
5437
5442
|
- `image.TYPE_RGBA`
|
|
5438
5443
|
- `image.TYPE_LUMINANCE`
|
|
5444
|
+
- `image.TYPE_LUMINANCE_ALPHA`
|
|
5439
5445
|
|
|
5440
5446
|
|
|
5441
5447
|
`buffer`: the raw image data
|