UNPKG

dce-expresskit

Version:

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

12 lines (11 loc) 404 B
import { Collection as MangoCollection } from 'dce-mango'; /** * Initialize a log collection given the dce-mango Collection class * @author Gabe Abrams * @param Collection the Collection class from dce-mango * @returns initialized logCollection */ declare const initLogCollection: (Collection: typeof MangoCollection) => MangoCollection<{ [k: string]: any; }>; export default initLogCollection;