refactor: 🏷️ add antenna type to streaming types

This commit is contained in:
ThatOneCalculator 2023-06-23 20:37:24 -07:00
parent fea10ab6db
commit 0625bcbec3
No known key found for this signature in database
GPG key ID: 8703CACD01000000

View file

@ -90,6 +90,15 @@ export type Channels = {
};
receives: null;
};
antenna: {
params: {
antennaId: Antenna["id"];
};
events: {
note: (payload: Note) => void;
};
receives: null;
}
messaging: {
params: {
otherparty?: User["id"] | null;