UNPKG

videomail-client

Version:

A wicked npm package to record videos directly in the browser, wohooo!

14 lines (13 loc) 450 B
import { VideomailClientOptions } from "../../types/options"; import HTTPVideomailError from "./HTTPVideomailError"; import VideomailError from "./VideomailError"; interface ErrorParams { err?: HTTPVideomailError; exc?: unknown; message?: string; explanation?: string; options: VideomailClientOptions; classList?: string[]; } declare function createError(errorParams: ErrorParams): VideomailError; export default createError;