this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at f9016d75eb5109a62d178ee329d61d1338450cb6 9 lines 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}