Fix(sdp-transform) bandwidth should be array (#42890)

32da4469b8/lib/grammar.js (L39)
This commit is contained in:
Jerry Hu 2020-03-06 18:16:03 -05:00 committed by GitHub
parent 43f3067cde
commit 94c755600f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -258,8 +258,8 @@ export interface SharedDescriptionFields {
ip: string;
};
// b=AS:4000
bandwidth?: {
bandwidth?: Array<{
type: 'TIAS' | 'AS' | 'CT' | 'RR' | 'RS';
limit: number | string;
};
}>;
}