We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If it's useful to anyone here is an initial pass at types for this project.
declare module 'ffmetadata' { function read(path: string, cb: (err: Error, data: any) => void): void; function read( path: string, options: { dryRun?: boolean; coverPath?: string }, cb: (err: Error, data: any) => void ): void; function write( path: string, data: Record<string, unknown>, cb: (err: Error) => void ): void; function write( path: string, data: Record<string, unknown>, options: { attachments?: string[]; dryRun?: boolean; coverPath?: string; id3v1?: boolean; 'id3v2.3'?: boolean; }, cb: (err: Error) => void ): void; function setFfmpegPath(path: string): void; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If it's useful to anyone here is an initial pass at types for this project.
The text was updated successfully, but these errors were encountered: