Skip to content

Commit 0546503

Browse files
committed
Update index.d.ts
1 parent b5310a0 commit 0546503

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5206,7 +5206,7 @@ declare module "postprocessing" {
52065206
color,
52075207
inverted
52085208
}?: {
5209-
asciiTexture?: ASCIITexture;
5209+
asciiTexture?: ASCIITexture | null;
52105210
cellSize?: number;
52115211
color?: Color | string | number | null;
52125212
inverted?: boolean;
@@ -5217,8 +5217,8 @@ declare module "postprocessing" {
52175217
*
52185218
* @type {ASCIITexture}
52195219
*/
5220-
get asciiTexture(): ASCIITexture;
5221-
set asciiTexture(value: ASCIITexture);
5220+
get asciiTexture(): ASCIITexture | null;
5221+
set asciiTexture(value: ASCIITexture | null);
52225222
/**
52235223
* A color that overrides the scene colors.
52245224
*

0 commit comments

Comments
 (0)