Export project, as well

This commit is contained in:
Kuba Orlik 2021-10-25 22:00:43 +02:00
parent e61b809428
commit bb7f5b5f01
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import { $ } from "zx";
import { BlankEntry, MediaEntry } from "./entry";
import Project from "./kdenlive";
import { Project } from "./kdenlive";
describe("Kdenlive", () => {
describe("example", () => {

View File

@ -1,7 +1,7 @@
import { BlackTrack, ConcreteProducer, Producer } from "./producer";
import { AudioTractor, trackIndexGen, Tractor, VideoTractor } from "./tractor";
export default class Project {
export class Project {
producers: Producer[] = [];
tractors: Tractor[] = [];
constructor(public fps: number) {