Make all properties in T required

interface APIInteractionDataResolvedChannelBase<T extends ChannelType> {
    id: string;
    name: null | string;
    permissions: string;
    type: T;
}

Type Parameters

Hierarchy (View Summary)

Properties

Properties

id: string

The id of the channel

name: null | string

The name of the channel (1-100 characters)

permissions: string
type: T

The type of the channel