File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 331331 renderPlaceHolderEmptyList?: (props: void) => React.ReactNode;
332332 }
333333
334- export interface ChannelListProps extends ChannelListProviderInterface , ChannelListUIProps {}
334+ export interface ChannelListProps extends ChannelListProviderProps , ChannelListUIProps {}
335335
336336 export interface ChannelListHeaderInterface {
337337 renderHeader?: (props: void) => React.ReactNode;
383383 }
384384
385385 export type ChannelSettingsContextProps = {
386- children: React.ReactNode;
386+ children? : React.ReactNode;
387387 channelUrl: string;
388388 className?: string;
389389 onCloseClick?(): void;
Original file line number Diff line number Diff line change 11import React from 'react' ;
22import {
33 ChannelListProvider ,
4- ChannelListProviderInterface ,
4+ ChannelListProviderProps ,
55} from './context/ChannelListProvider' ;
66
77import ChannelListUI , { ChannelListUIProps } from './components/ChannelListUI' ;
88
9- interface ChannelListProps extends ChannelListProviderInterface , ChannelListUIProps { }
9+ interface ChannelListProps extends ChannelListProviderProps , ChannelListUIProps { }
1010
1111const ChannelList : React . FC < ChannelListProps > = ( props : ChannelListProps ) => {
1212 return (
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ interface ChannelSettingsQueries {
2626}
2727
2828export type ChannelSettingsContextProps = {
29- children : React . ReactNode ;
29+ children ? : React . ReactNode ;
3030 channelUrl : string ;
3131 className ?: string ;
3232 onCloseClick ?( ) : void ;
You can’t perform that action at this time.
0 commit comments