Type Alias MongodbSharedLockDocument

MongodbSharedLockDocument: {
    _id: ObjectId;
    expiration: Date | null;
    key: string;
    reader: MongodbReaderSemaphoreDocument | null;
    writer: MongodbWriterLockSubDocument | null;
}

IMPORT_PATH: "@daiso-tech/core/shared-lock/mongodb-shared-lock-adapter"