Browse Source

no need to export constants

Abhinav 2 năm trước cách đây
mục cha
commit
28af6873f0
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  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);
 
-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() {
     return pathToFfmpeg.replace('app.asar', 'app.asar.unpacked');