| 47 | } |
| 48 | |
| 49 | export interface SparkXrButton { |
| 50 | enterXrHtml?: string; |
| 51 | exitXrHtml?: string; |
| 52 | enterVrHtml?: string; |
| 53 | exitVrHtml?: string; |
| 54 | enterArHtml?: string; |
| 55 | exitArHtml?: string; |
| 56 | enterXrText?: string; |
| 57 | exitXrText?: string; |
| 58 | enterVrText?: string; |
| 59 | exitVrText?: string; |
| 60 | enterArText?: string; |
| 61 | exitArText?: string; |
| 62 | style?: CSSStyleDeclaration; |
| 63 | enterStyle?: CSSStyleDeclaration; |
| 64 | exitStyle?: CSSStyleDeclaration; |
| 65 | zIndex?: number; |
| 66 | } |
| 67 | |
| 68 | export type XrGamepads = { |
| 69 | left?: Gamepad; |
nothing calls this directly
no outgoing calls
no test coverage detected