-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathtypes.d.ts
More file actions
37 lines (31 loc) · 766 Bytes
/
types.d.ts
File metadata and controls
37 lines (31 loc) · 766 Bytes
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
/* eslint-disable no-unused-vars */
interface Window {
sse: {
poster?: HTMLImageElement,
settings: Promise<object>,
contentUrl: string,
contents: ArrayBuffer,
params: Record<string, string>
}
firstFrame?: () => void;
}
declare module 'playcanvas/scripts/esm/xr-controllers.mjs' {
const XrControllers: any;
export { XrControllers };
}
declare module 'playcanvas/scripts/esm/xr-navigation.mjs' {
const XrNavigation: any;
export { XrNavigation };
}
declare module '*.html' {
const content: string;
export default content;
}
declare module '*.css' {
const content: string;
export default content;
}
declare module '*.js' {
const content: string;
export default content;
}