{"version":3,"sources":["../../../src/window/types/channel-type.ts"],"names":["ChannelTypes"],"mappings":"AAQY,IAAA,YAAA,qBAAAA,aAAL,KAAA;AAEL,EAAAA,cAAA,SAAU,CAAA,GAAA,SAAA;AAGV,EAAAA,cAAA,SAAU,CAAA,GAAA,SAAA;AAGV,EAAAA,cAAA,QAAS,CAAA,GAAA,QAAA;AARC,EAAAA,OAAAA,aAAAA;AAAA,CAAA,EAAA,YAAA,IAAA,EAAA","file":"channel-type.mjs","sourcesContent":["/**\n * The type of the channel with which the content is associated.\n */\nexport type ChannelType = 'Regular' | 'Private' | 'Shared';\n\n/**\n * The type of the channel with which the content is associated.\n */\nexport enum ChannelTypes {\n  /** The default channel type. Type of channel is used for general collaboration and communication within a team. */\n  Regular = 'Regular',\n\n  /** Type of channel is used for sensitive or confidential communication within a team and is only accessible to members of the channel. */\n  Private = 'Private',\n\n  /** Type of channel is used for collaboration between multiple teams or groups and is accessible to members of all the teams or groups. */\n  Shared = 'Shared',\n}\n"]}