File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/shared-lib/src/pubsub Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -103,16 +103,16 @@ export interface PeripheralDevicePubSubTypes {
103
103
/** Custom publications for package-manager */
104
104
[ PeripheralDevicePubSub . packageManagerPlayoutContext ] : (
105
105
deviceId : PeripheralDeviceId ,
106
- token : string | undefined
106
+ token ? : string
107
107
) => PeripheralDevicePubSubCollectionsNames . packageManagerPlayoutContext
108
108
[ PeripheralDevicePubSub . packageManagerPackageContainers ] : (
109
109
deviceId : PeripheralDeviceId ,
110
- token : string | undefined
110
+ token ? : string
111
111
) => PeripheralDevicePubSubCollectionsNames . packageManagerPackageContainers
112
112
[ PeripheralDevicePubSub . packageManagerExpectedPackages ] : (
113
113
deviceId : PeripheralDeviceId ,
114
114
filterPlayoutDeviceIds : PeripheralDeviceId [ ] | undefined ,
115
- token : string | undefined
115
+ token ? : string
116
116
) => PeripheralDevicePubSubCollectionsNames . packageManagerExpectedPackages
117
117
}
118
118
You can’t perform that action at this time.
0 commit comments