photo-sphere-viewer
Version:
A JavaScript library to display Photo Sphere panoramas
14 lines (13 loc) • 305 B
TypeScript
/**
* @summary General information about the system
*/
export const SYSTEM: {
loaded: boolean;
pixelRatio: number;
isWebGLSupported: boolean;
maxTextureWidth: number;
mouseWheelEvent: string;
fullscreenEvent: string;
getMaxCanvasWidth: () => number;
isTouchEnabled: Promise<boolean>;
};