Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

custom-media-element

Package Overview
Dependencies
Maintainers
2
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

custom-media-element - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

10

custom-media-element.d.ts

@@ -15,2 +15,3 @@

disconnectedCallback(): void;
handleEvent(event: Event): void;
}

@@ -26,15 +27,16 @@

disconnectedCallback(): void;
handleEvent(event: Event): void;
}
type CustomMediaElementConstructor<K> = {
type CustomMediaElementConstructor<T> = {
readonly observedAttributes: string[];
Events: string[];
template: HTMLTemplateElement;
new(): K
new(): T
};
export function CustomMediaMixin(Base: any, options: { tag: 'video', is: string }):
export function CustomMediaMixin(Base: any, options: { tag: 'video', is?: string }):
CustomMediaElementConstructor<CustomVideoElement>;
export function CustomMediaMixin(Base: any, options: { tag: 'audio', is: string }):
export function CustomMediaMixin(Base: any, options: { tag: 'audio', is?: string }):
CustomMediaElementConstructor<CustomAudioElement>;

2

package.json
{
"name": "custom-media-element",
"version": "1.1.2",
"version": "1.1.3",
"description": "A custom element for extending the native media elements (<audio> or <video>)",

@@ -5,0 +5,0 @@ "type": "module",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc