@remotion/cli
Version:
Control Remotion features using the `npx remotion` command
13 lines (12 loc) • 493 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.setBufferStateDelayInMilliseconds = exports.getBufferStateDelayInMilliseconds = void 0;
let value = null;
const getBufferStateDelayInMilliseconds = () => {
return value;
};
exports.getBufferStateDelayInMilliseconds = getBufferStateDelayInMilliseconds;
const setBufferStateDelayInMilliseconds = (val) => {
value = val;
};
exports.setBufferStateDelayInMilliseconds = setBufferStateDelayInMilliseconds;