import type { ChannelType, ThreadChannelType } from 'discord-api-types/v10'; import { kData } from '../../utils/symbols.js'; import type { Channel } from '../Channel.js'; export interface ChannelOwnerMixin extends Channel {} export class ChannelOwnerMixin { /** * The id of the creator of the group DM or thread */ public get ownerId() { return this[kData].owner_id; } }