buildService.d.ts 488 B

123456789101112131415
  1. import Database from "better-sqlite3";
  2. export declare class BuildService {
  3. private db;
  4. private storageDir;
  5. private queue;
  6. private running;
  7. constructor(db: Database.Database, storageDir: string);
  8. enqueue(buildId: string, creativeId: string, platforms: string[], theme: Record<string, string>): void;
  9. private processQueue;
  10. private build;
  11. private runViteBuild;
  12. private collectOutput;
  13. private createZip;
  14. }
  15. //# sourceMappingURL=buildService.d.ts.map