typing does nothing at all

This commit is contained in:
2023-12-04 14:38:19 +01:00
parent d353d6cc1f
commit 583b3cb104
3 changed files with 41 additions and 15 deletions

View File

@ -2,7 +2,7 @@ export let socket = new WebSocket("ws://localhost:3000");
export interface OSCMessage {
address: string;
port: number;
message: object;
args: object;
timetag: number;
}

View File

@ -492,7 +492,7 @@ export class SoundEvent extends AudibleEvent {
sendToServer({
address: oscAddress,
port: oscPort,
message: event,
args: event,
timetag: Math.round(Date.now() + this.app.clock.deadline),
} as OSCMessage);
}