@ffmpeg/types
Advanced tools
Comparing version 0.12.1 to 0.12.2
{ | ||
"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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4238
113