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