mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-01 15:50:13 +00:00
Allow VRLayer left and right bounds to accept types of number[], Float32Array or null.
This commit is contained in:
committed by
Ryan Cavanaugh
parent
f439710d62
commit
822fafc157
4
types/webvr-api/index.d.ts
vendored
4
types/webvr-api/index.d.ts
vendored
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user