From c0a6729fe35de570ec2b20b599860dfdcb3c4cbb Mon Sep 17 00:00:00 2001 From: Maksym Date: Mon, 14 Oct 2024 19:32:18 +0200 Subject: [PATCH] modified: src/index.ts fixed exports --- src/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index d42d371..b4c273c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,7 @@ -import { Strip } from "./VMR/Bus"; +import { Bus } from "./VMR/Bus"; +import { Strip } from "./VMR/Strip"; import { Control } from "./VMR/Control"; import { Remote } from "./VMR/Remote"; import { VMObject } from "./VMR/VMObject"; -export {Remote, Control, Strip, VMObject} \ No newline at end of file +export { Remote, Control, Strip, Bus, VMObject };