# HttpPluginOptions

`type` in `http` · v0.1.0

<https://docs.seedcord.org/packages/http/0.1.0/types/http-plugin-options>

The options an HTTP plugin declares, narrowed to the transports this base serves.

## Declaration

```ts
type HttpPluginOptions = TypedOmit<PluginOptions, "transport"> & {
    transport?: "http" | "any";
};
```
