interfaces for ChannelView

This commit is contained in:
Niel 2019-02-07 00:20:49 +01:00
parent 2ba5fd5a6e
commit ea6579abea

11
src/interfaces.d.ts vendored Normal file
View file

@ -0,0 +1,11 @@
interface Channel {
id: number;
name: string;
totalClients: number;
neededSubscribePower: number;
subchannels: Channel[];
}
interface ChannelViewProps {
channel: Channel;
}