Skip to content

Commit 3115fc6

Browse files
committed
refactor(all): updated class names and changed to non default exports
1 parent 47d742b commit 3115fc6

4 files changed

Lines changed: 4 additions & 7 deletions

File tree

src/EDL/genEDL.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@ import {Generator} from "../baseGenerator";
22
import EDL from "edl_composer"; // yes, there are no TS declarations
33

44
import {Cut} from "../project";
5-
import path from "path";
65

7-
8-
export default class ResolevEdl extends Generator {
6+
export class ResolveEDL extends Generator {
97
generate() {
108
const edlIr = new EDL({
119
"title": "JumpCutterExport",

src/FCPXML/genFCPXML.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ import {fcpxmlBuilder} from "./helpersFCPXML";
33
import path from "path";
44

55

6-
export default class FCPXML extends Generator {
6+
export class FCPXML extends Generator {
77
generate(): string {
88
const builder = new fcpxmlBuilder();
99
builder.buildContext(() => {
10-
1110
builder.resourcesBuildContext(1 / this.frameRate, () => {
1211
builder.putAsset(this.clipName, this.cuts[this.cuts.length - 1].end);
1312
});

src/XML/genXML.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import path from "path";
22
import {Generator} from "../baseGenerator";
33
import {xmlBuilder} from "./helpersXML";
44

5-
export default class XML extends Generator {
5+
export class XML extends Generator {
66
generate(): string {
77
const builder = new xmlBuilder();
88
builder.buildContext(path.parse(this.clipName).name, this.frameRate, this.cuts[this.cuts.length - 1].end, () => {

src/vegasEDL/genVegasEDL.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {Generator} from "../baseGenerator";
22
import {vegasEDLBuilder} from "./helpersVegasEDL";
33

4-
export default class vegasEDL extends Generator {
4+
export class VegasEDL extends Generator {
55

66
// the main thing
77
generate() {

0 commit comments

Comments
 (0)