# MongoServices

`interface` in `plugins` · v0.6.1

<https://docs.seedcord.org/packages/plugins/0.6.1/interfaces/mongo-services>

Registry of available database services.

This interface can be augmented via declaration merging to add type-safe service definitions when using the @RegisterMongoService and @RegisterMongoModel decorator.

```ts
interface MongoServices
```

## Examples

```ts
declare module '@seedcord/plugins' {
  interface MongoServices {
    'user': Users;
    'guild': Guilds;
  }
}
```
