export type OmitPartialGroupDMChannel<Structure extends { channel: Channel }> = Structure & { channel: Exclude<Structure['channel'], PartialGroupDMChannel>;};
Type Parameters
{ channel: Channel } Structure extends
Structure & { channel: Exclude<Structure['channel'], PartialGroupDMChannel>;}