UNPKG

dce-expresskit

Version:

Shared functions, helpers, and tools for Harvard DCE Express-based servers

9 lines (8 loc) 251 B
/** * Send successful API response * @author Gabe Abrams * @param res express response * @param body the body of the response to send to the client */ declare const handleSuccess: (res: any, body: any) => undefined; export default handleSuccess;