From 822fafc157d3d2e1a8522ab4bfcdf9ee2ac1818d Mon Sep 17 00:00:00 2001 From: Buck Supergoose Date: Tue, 11 Sep 2018 16:26:48 +0100 Subject: [PATCH] Fix #28598 (#28668) Allow VRLayer left and right bounds to accept types of number[], Float32Array or null. --- types/webvr-api/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/webvr-api/index.d.ts b/types/webvr-api/index.d.ts index 3d03a14d4b..a285d968b2 100644 --- a/types/webvr-api/index.d.ts +++ b/types/webvr-api/index.d.ts @@ -133,8 +133,8 @@ declare var VRDisplay: { }; interface VRLayer { - leftBounds?: number[] | null; - rightBounds?: number[] | null; + leftBounds?: number[] | Float32Array | null; + rightBounds?: number[] | Float32Array | null; source?: HTMLCanvasElement | null; }