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

@ffmpeg/types

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ffmpeg/types - npm Package Compare versions

Comparing version 0.12.1 to 0.12.2

2

package.json
{
"name": "@ffmpeg/types",
"version": "0.12.1",
"version": "0.12.2",
"description": "ffmpeg.wasm types",

@@ -5,0 +5,0 @@ "types": "types",

@@ -42,2 +42,19 @@ // TODO: Add lint and test.

export interface FSFilesystemWORKERFS {
}
export interface FSFilesystemMEMFS {
}
export interface FSFilesystems {
WORKERFS: FSFilesystemWORKERFS;
MEMFS: FSFilesystemMEMFS;
}
export type FSFilesystem =
| FSFilesystemWORKERFS
| FSFilesystemMEMFS;
/**

@@ -62,2 +79,5 @@ * Functions to interact with Emscripten FS library.

isDir: (mode: number) => boolean;
mount: (fileSystemType: FSFilesystem, data: WorkerFSMountConfig, path: string) => void;
unmount: (path: string) => void;
filesystems: FSFilesystems;
}

@@ -64,0 +84,0 @@

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