1export default interface IDeviceProfile { 2 deviceMemory?: number; 3 videoDevice?: { 4 deviceId: string; 5 groupId: string; 6 }; 7 webGlParameters?: Record<string, string | number | boolean>; 8} 9 10