this repo has no description
at main 128 B view raw
1export interface OSCMessage{ 2 address: string, 3 values: OSCValue[] 4} 5 6export interface OSCValue{ 7 key: string, 8 value: any 9}