浏览代码

no need to export constants

Abhinav 2 年之前
父节点
当前提交
28af6873f0
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/services/ffmpeg.ts

+ 3 - 3
src/services/ffmpeg.ts

@@ -9,9 +9,9 @@ import { existsSync } from 'fs';
 
 
 const execAsync = util.promisify(require('child_process').exec);
 const execAsync = util.promisify(require('child_process').exec);
 
 
-export const INPUT_PATH_PLACEHOLDER = 'INPUT';
-export const FFMPEG_PLACEHOLDER = 'FFMPEG';
-export const OUTPUT_PATH_PLACEHOLDER = 'OUTPUT';
+const INPUT_PATH_PLACEHOLDER = 'INPUT';
+const FFMPEG_PLACEHOLDER = 'FFMPEG';
+const OUTPUT_PATH_PLACEHOLDER = 'OUTPUT';
 
 
 function getFFmpegStaticPath() {
 function getFFmpegStaticPath() {
     return pathToFfmpeg.replace('app.asar', 'app.asar.unpacked');
     return pathToFfmpeg.replace('app.asar', 'app.asar.unpacked');