Interface Mortice

interface Mortice {
    readLock(): Promise<Release>;
    writeLock(): Promise<Release>;
}

Methods