@remotion/studio
Version:
APIs for interacting with the Remotion Studio
10 lines (9 loc) • 348 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.checkFullscreenSupport = void 0;
const checkFullscreenSupport = () => {
return (document.fullscreenEnabled ||
// @ts-expect-error Types not defined
document.webkitFullscreenEnabled);
};
exports.checkFullscreenSupport = checkFullscreenSupport;