Add project files

This commit is contained in:
Tomás Fox
2022-03-06 22:46:03 -03:00
commit 6f73cd3bdb
17 changed files with 613 additions and 0 deletions

9
src/ffprobe-wasm.d.mts Normal file
View File

@@ -0,0 +1,9 @@
import { FFprobe } from "./ffprobe-wasm-shared";
export * from "./ffprobe-wasm-shared";
export default function loadFFprobe(ffprobe?: FFprobeInit): Promise<FFprobe>;
export interface FFprobeInit {
locateFile?(path: string, scriptDirectory: string): string;
}