Skip to content

Commit 7185347

Browse files
authored
🤖 Merge PR DefinitelyTyped#73101 [m3u8-parser] fix typo by @k-yle
1 parent 1eeea8b commit 7185347

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

types/m3u8-parser/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export interface RawAttributes {
1919
}
2020

2121
export interface Attributes {
22-
resoltion?: unknown;
22+
resolution?: unknown;
2323

2424
[other: string]: unknown;
2525
}

types/m3u8-parser/m3u8-parser-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var parser = new Parser();
77
parser.push(manifest);
88
parser.end();
99

10-
const parsedManifest = parser.manifest.playlists?.[0].contentProtection?.["com.apple.fps.1_0"]?.attributes.resoltion;
10+
const parsedManifest = parser.manifest.playlists?.[0].contentProtection?.["com.apple.fps.1_0"]?.attributes.resolution;
1111

1212
const parser2 = new Parser({
1313
uri: "https://exmaple.com/video.m3u8?param_a=34&param_b=abc",

0 commit comments

Comments
 (0)