UNPKG

@remotion/cli

Version:

Control Remotion features using the `npx remotion` command

13 lines (12 loc) 402 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getConcurrency = exports.setConcurrency = void 0; let currentConcurrency = null; const setConcurrency = (newConcurrency) => { currentConcurrency = newConcurrency; }; exports.setConcurrency = setConcurrency; const getConcurrency = () => { return currentConcurrency; }; exports.getConcurrency = getConcurrency;