import Id from '../types/Id'; /** * Type of a lock from the Coconut lock collection. * @author Benedikt Arnarsson */ type Lock = { // Unique lock id id: Id, // Id of the server that acquired the lock serverId: string, }; export default Lock;