Skip to content

Commit

Permalink
Merge pull request #695 from videogular/fix/interfaces-2
Browse files Browse the repository at this point in the history
Fix/interfaces 2
  • Loading branch information
Elecash authored Feb 14, 2018
2 parents d312990 + 49af7f4 commit 3ea8820
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/vg-media/i-media-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface IMediaElement {
/**
* Returns the node element. Only available on Angular classes.
*/
readonly elem?: string;
readonly elem?: any;
/**
* Returns an AudioTrackList object with the audio tracks for a given video element.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/core/vg-media/vg-media-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { IMediaElement } from './i-media-element';

export class VgMediaElement implements IMediaElement {
id: string;
elem: string;
elem: any;
get audioTracks(): AudioTrackList { return null; };
autoplay: boolean;
buffered: TimeRanges;
Expand Down

0 comments on commit 3ea8820

Please sign in to comment.