Type Alias MongodbSemaphoreDocument

MongodbSemaphoreDocument: {
    _id: ObjectId;
    expiration: Date | null;
    key: string;
    limit: number;
    slots: MongodbSemaphoreSlotSubDocument[];
}

IMPORT_PATH: "@daiso-tech/core/semaphore/adapters"