export interface App { title: string; id: number; hdr_supported: boolean; active: boolean; } export interface AppsResponse { apps: Record; } export async function fetchApps() { console.log('Getting apps'); const response = await fetch('/api/apps'); console.log(response); const data = (await response.json()) as AppsResponse; console.log(data); return data; }