dce-expresskit
Version:
Shared functions, helpers, and tools for Harvard DCE Express-based servers
12 lines (11 loc) • 460 B
TypeScript
import { Collection as MangoCollection } from 'dce-mango';
/**
* Initialize a cross-server credential collection given the dce-mango Collection class
* @author Gabe Abrams
* @param Collection the Collection class from dce-mango
* @returns initialized logCollection
*/
declare const initCrossServerCredentialCollection: (Collection: typeof MangoCollection) => MangoCollection<{
[k: string]: any;
}>;
export default initCrossServerCredentialCollection;