# Core

`interface` in `http` · v0.2.3

<https://docs.seedcord.org/packages/http/0.2.3/interfaces/core>

Main interface for Seedcord core functionality on the HTTP transport.

This interface can be augmented via declaration merging to add type-safe plugin definitions when using `this.core` in handlers.

```ts
interface Core extends CoreBase
```

## Examples

```ts
declare module '@seedcord/http' {
  interface Core {
    db: Mongoose;
  }
}
```

## Properties

### config

```ts
readonly config: HttpConfig
```
