Skip to content

Commit

Permalink
fix(FEC-12097): Update TS types - constructor should be public (#584)
Browse files Browse the repository at this point in the history
Update TS types - constructor should be public
  • Loading branch information
JonathanTGold committed Oct 11, 2022
1 parent 70f3088 commit 1e2b5ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ declare module 'kaltura-player-js' {
export class BasePlugin<ConfigType> {
protected config: ConfigType;
protected static defaultConfig: {};
protected constructor(name: string, player: KalturaPlayer, config?: ConfigType);
public constructor(name: string, player: KalturaPlayer, config?: ConfigType);
protected logger: Logger;
protected loadMedia(): void;
public player: KalturaPlayer;
Expand Down

0 comments on commit 1e2b5ff

Please sign in to comment.