Type Alias MongodbCacheDocument

MongodbCacheDocument: {
    _id: ObjectId;
    expiration: Date | null;
    key: string;
    value: number | string;
}

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