# RuntimeOfConfig

`type` in `http` · v0.7.0

<https://docs.seedcord.org/packages/http/0.7.0/types/runtime-of-config>

## Declaration

```ts
type RuntimeOfConfig<Cfg extends HttpConfig> = Cfg extends {
    runtime: "edge";
}
    ? "edge"
    : "server";
```
