interfaces for ChannelView
This commit is contained in:
parent
2ba5fd5a6e
commit
ea6579abea
1 changed files with 11 additions and 0 deletions
11
src/interfaces.d.ts
vendored
Normal file
11
src/interfaces.d.ts
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
interface Channel {
|
||||
id: number;
|
||||
name: string;
|
||||
totalClients: number;
|
||||
neededSubscribePower: number;
|
||||
subchannels: Channel[];
|
||||
}
|
||||
|
||||
interface ChannelViewProps {
|
||||
channel: Channel;
|
||||
}
|
Loading…
Reference in a new issue