Skip to content

Commit 63b787f

Browse files
🤖 dprint fmt
1 parent bb65dbe commit 63b787f

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

types/sdp-transform/index.d.ts

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff 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<{

types/sdp-transform/sdp-transform-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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+
}

0 commit comments

Comments
 (0)