@livetiles/reach-plugin-types 0.5.0-preview.402 → 0.5.0-preview.403

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/index.d.ts +2 -2
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -4670,7 +4670,7 @@ declare module "libs/reach/ui/common/src/common/channels/ChannelTitle" {
4670
4670
  import { Channel } from "libs/reach/util/common/src/index";
4671
4671
  import { CurrentUser } from "libs/reach/util/common/src/index";
4672
4672
  interface Props {
4673
- channel: Channel;
4673
+ channel: Partial<Channel>;
4674
4674
  language?: string;
4675
4675
  applyChannelBubbleStyle?: boolean;
4676
4676
  role?: string;
@@ -4681,7 +4681,7 @@ declare module "libs/reach/ui/common/src/common/channels/ChannelTitle" {
4681
4681
  channels: Channel[];
4682
4682
  language?: string;
4683
4683
  }>;
4684
- export function getChannelDisplayName(channel: Channel, user: CurrentUser, language?: string): string;
4684
+ export function getChannelDisplayName(channel: Partial<Channel>, user: CurrentUser, language?: string): string;
4685
4685
  }
4686
4686
  declare module "libs/reach/ui/common/src/common/channels/ChannelItem" {
4687
4687
  import { UserChannelSubscription } from "libs/reach/util/common/src/index";
package/package.json CHANGED
@@ -4,6 +4,6 @@
4
4
  "main": "",
5
5
  "types": "./index.d.ts",
6
6
  "license": "ISC",
7
- "version": "0.5.0-preview.402",
7
+ "version": "0.5.0-preview.403",
8
8
  "dependencies": {}
9
9
  }