# RuntimeMismatch

`type` in `core` · v0.8.0

<https://docs.seedcord.org/packages/core/0.8.0/types/runtime-mismatch>

## Declaration

```ts
type RuntimeMismatch<
    PluginRt extends string,
    BotRt extends string
> = Record<
    `this plugin declares runtime '${PluginRt}' but this bot runs '${BotRt}'`,
    never
>;
```
