Skip to content

Commit

Permalink
fix: fix getLicense function's type definition (#3606)
Browse files Browse the repository at this point in the history
* fix(type): fix getLicense type definition
  • Loading branch information
YangJonghun committed Mar 26, 2024
1 parent bb9e7eb commit 89ae843
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/video.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ export type Drm = Readonly<{
base64Certificate?: boolean; // ios default: false
/* eslint-disable @typescript-eslint/no-unused-vars */
getLicense?: (
spcBase64: string,
contentId: string,
licenseUrl: string,
loadedLicenseUrl: string,
contentId: string,
spcBase64: string,
) => void; // ios
/* eslint-enable @typescript-eslint/no-unused-vars */
}>;
Expand Down

0 comments on commit 89ae843

Please sign in to comment.