# GatewayPluginOptions

`type` in `gateway` · v0.1.4

<https://docs.seedcord.org/packages/gateway/0.1.4/types/gateway-plugin-options>

The options a gateway plugin declares, narrowed to the transports this base serves.

## Declaration

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