From b7c0d3a20552cb8b8d6367e542c8add9478849be Mon Sep 17 00:00:00 2001 From: TypeScript Bot Date: Fri, 12 Apr 2024 01:49:46 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20dprint=20fmt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/jwplayer/index.d.ts | 2 +- types/jwplayer/jwplayer-tests.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/types/jwplayer/index.d.ts b/types/jwplayer/index.d.ts index b54915bd56b7db..d09a51f012f424 100644 --- a/types/jwplayer/index.d.ts +++ b/types/jwplayer/index.d.ts @@ -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; diff --git a/types/jwplayer/jwplayer-tests.ts b/types/jwplayer/jwplayer-tests.ts index 17f4191598fa0a..7814053a33d6b5 100644 --- a/types/jwplayer/jwplayer-tests.ts +++ b/types/jwplayer/jwplayer-tests.ts @@ -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", }, }, };