1import { NodeDefinition } from "./Nodes"; 2import { NodeOSCActionsSendChatbox } from "./OSCActions/Send Chatbox"; 3 4export let NodeOSCActions: NodeDefinition = { 5 os: 'any', 6 7 isSingle: false, 8 name: 'OSC Actions', 9 items: [ 10 NodeOSCActionsSendChatbox 11 ] 12}