-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.d.ts
42 lines (42 loc) · 1.03 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* Extension of the JSX module
*
* This is needed for JSX not complaining with Aframe tags
*/
declare module JSX {
interface IntrinsicElements {
'a-scene': any;
'a-entity': any;
'a-box'?: any;
'a-camera'?: any;
'a-circle'?: any;
'a-collada-model'?: any;
'a-cone'?: any;
'a-cursor'?: any;
'a-curvedimage'?: any;
'a-cylinder'?: any;
'a-dodecahedron'?: any;
'a-gltf-model'?: any;
'a-icosahedron'?: any;
'a-image'?: any;
'a-light'?: any;
'a-link'?: any;
'a-obj-model'?: any;
'a-octahedron'?: any;
'a-plane'?: any;
'a-ring'?: any;
'a-sky'?: any;
'a-sound'?: any;
'a-sphere'?: any;
'a-tetrahedron'?: any;
'a-text'?: any;
'a-torus-knot'?: any;
'a-torus'?: any;
'a-triangle'?: any;
'a-video'?: any;
'a-videosphere'?: any;
'a-assets'?: any;
'a-animation'?: any;
'a-asset-item'?: any;
}
}