From 318be6c9754b657f75be62a9fd0b888b3feff6bf Mon Sep 17 00:00:00 2001 From: Leo Bernard Date: Sat, 29 May 2021 23:53:42 +0200 Subject: [PATCH] :fire: Remove unused imports --- src/ns/scene.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/ns/scene.ts b/src/ns/scene.ts index 66d8168..f4dbd93 100644 --- a/src/ns/scene.ts +++ b/src/ns/scene.ts @@ -1,9 +1,6 @@ import { Ableton } from ".."; import { Namespace } from "."; -import { Track, RawTrack } from "./track"; -import { CuePoint, RawCuePoint } from "./cue-point"; -import { SongView } from "./song-view"; -import { ClipSlot, RawClipSlot } from './clip-slot'; +import { ClipSlot, RawClipSlot } from "./clip-slot"; export interface GettableProperties { clip_slots: RawClipSlot[]; @@ -51,7 +48,8 @@ export class Scene extends Namespace< super(ableton, "scene", raw.id); this.transformers = { - clip_slots: clip_slots => clip_slots.map(c => new ClipSlot(this.ableton, c)), + clip_slots: (clip_slots) => + clip_slots.map((c) => new ClipSlot(this.ableton, c)), }; } }