Skip to content

Commit

Permalink
fix: missing type definition for enterVR
Browse files Browse the repository at this point in the history
  • Loading branch information
WoodNeck committed Sep 25, 2020
1 parent 7203418 commit b835bd9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion declaration/PanoViewer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,11 @@ declare class PanoViewer extends Component {
}>): this;
enableSensor(): Promise<string>;
disableSensor(): this;
enterVR(): Promise<string>;
enterVR(options: {
requiredFeatures?: any[],
optionalFeatures?: any[],
[key: string]: any,
} = {}): Promise<string>;
exitVR(): this;
}

Expand Down

0 comments on commit b835bd9

Please sign in to comment.