UNPKG

alpha-version-dce-check-in-ui

Version:

UI for taking attendance and checking people in.

10 lines (9 loc) 197 B
/** * An error with a code * @author Gabe Abrams */ declare class ErrorWithCode extends Error { code: string; constructor(message: string, code: string); } export default ErrorWithCode;