videomail-client
Version:
A wicked npm package to record videos directly in the browser, wohooo!
15 lines (14 loc) • 335 B
TypeScript
import { ErrorObject } from "serialize-error";
export interface VideomailCommandArgs {
frame?: number;
key?: string | undefined;
err?: ErrorObject;
sample?: number;
mp4?: string;
webm?: string;
duration?: number;
}
export interface VideomailCommand {
command: string;
args?: VideomailCommandArgs;
}