# ResolvedChannelOf

`type` in `http` · v0.1.0-next.0

<https://docs.seedcord.org/packages/http/0.1.0-next.0/types/resolved-channel-of>

## Declaration

```ts
type ResolvedChannelOf<Type extends ChannelType> = APIInteractionDataResolvedChannelBase<Type> &
    (Type extends ThreadChannelType
        ? Pick<APIThreadChannel, "parent_id" | "thread_metadata">
        : unknown);
```
