import Text from './misc/Text.js'; import NavigationEndpoint from './NavigationEndpoint.js'; import { YTNode } from '../helpers.js'; class AccountChannel extends YTNode { static type = 'AccountChannel'; title: Text; endpoint: NavigationEndpoint; constructor(data: any) { super(); this.title = new Text(data.title); this.endpoint = new NavigationEndpoint(data.navigationEndpoint); } } export default AccountChannel;