modified: src/index.ts

fixed exports
This commit is contained in:
Maksym 2024-10-14 19:32:18 +02:00
parent ad8719e530
commit c0a6729fe3

View File

@ -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}
export { Remote, Control, Strip, Bus, VMObject };