Skip to content

Commit

Permalink
馃 dprint fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
typescript-bot committed Apr 12, 2024
1 parent 4e11313 commit b7c0d3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion types/jwplayer/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1670,7 +1670,7 @@ declare namespace jwplayer {
registerPlugin(
pluginName: string,
playerMinimumVersion: string,
pluginClassOrFunction: (playerInstance: JWPlayer, pluginConfig: any, pluginDiv: HTMLElement) => void
pluginClassOrFunction: (playerInstance: JWPlayer, pluginConfig: any, pluginDiv: HTMLElement) => void,
): void;
remove(): JWPlayer;
removeButton(id: string): JWPlayer;
Expand Down
4 changes: 2 additions & 2 deletions types/jwplayer/jwplayer-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ const config: jwplayer.SetupConfig = {
plugins: {
"//myexample.com/jwplayer/scripts/sampleScript.js": {
sampleFunction: () => {
console.log('from plugin: hello world');
console.log("from plugin: hello world");
},
name: 'Dan Woon Acorn'
name: "Dan Woon Acorn",
},
},
};
Expand Down

0 comments on commit b7c0d3a

Please sign in to comment.