File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -178,12 +178,14 @@ export interface MediaAttributes extends SharedAttributes {
178178 // a=maxptime
179179 maxptime ?: number | undefined ;
180180 // a=crypto
181- crypto ?: Array < {
182- id : number ;
183- suite : string ;
184- config : string ;
185- sessionConfig ?: string | undefined ;
186- } > | undefined ;
181+ crypto ?:
182+ | Array < {
183+ id : number ;
184+ suite : string ;
185+ config : string ;
186+ sessionConfig ?: string | undefined ;
187+ } >
188+ | undefined ;
187189 // a=candidate
188190 candidates ?:
189191 | Array < {
Original file line number Diff line number Diff line change @@ -66,4 +66,4 @@ function test_crypto_attribute() {
6666 crypto . suite ; // $ExpectType string
6767 crypto . config ; // $ExpectType string
6868 crypto . sessionConfig ; // $ExpectType string | undefined
69- }
69+ }
You can’t perform that action at this time.
0 commit comments