dce-mango
Version:
Harvard DCE's Non-relational DB Wrapper.
9 lines (8 loc) • 372 B
TypeScript
/**
* Given the name of a collection, returns the corresponding lock collection's name.
* @author Benedikt Arnarsson
* @param collectionName the collection whose lock collection we want to find.
* @returns the name of the corresponding lock collection.
*/
declare const getLockCollectionName: (collectionName: string) => string;
export default getLockCollectionName;