Describe the bug
Adapters options type (KeyvMongoOptions, for example) is declared without with export keyword. In Keyv v4 I could use Keyv.Options in my TypeScript project to declare type for config, but in v5 options type isn't public.
How To Reproduce
// throws a TypeScript error - KeyvMongoOptions isn't exported
import { KeyvMongo, type KeyvMongoOptions } from '@keyv/mongo'
Describe the bug Adapters options type (
KeyvMongoOptions
, for example) is declared without withexport
keyword. In Keyv v4 I could useKeyv.Options
in my TypeScript project to declare type for config, but in v5 options type isn't public.How To Reproduce