import type { PlaylistType } from '../../runtime'; export interface IRawPlaylistsUser { guid: string; updated: number; created: number; id: string; name: string; identity: string; username: string; playlistType: PlaylistType; niche: string; domain: string; videoCount: number; thumbs: string[]; availableVideos: number; stat: { likes: number; dislikes: number; views: number; }; hasCurrentVideo: boolean; firstVideoID: string; }