11 lines
268 B
TypeScript
11 lines
268 B
TypeScript
import ListChannels from './data/list-channels';
|
|
import { IJSONObject } from '@automatisch/types';
|
|
|
|
export default class Data {
|
|
listChannels: ListChannels;
|
|
|
|
constructor(connectionData: IJSONObject) {
|
|
this.listChannels = new ListChannels(connectionData);
|
|
}
|
|
}
|