xref: /expo/home/types/DevSession.ts (revision 7547a981)
1export type DevSession = {
2  description: string;
3  hostname?: string;
4  config?: object;
5  url: string;
6  platform?: 'native' | 'web';
7  source: 'desktop' | 'snack';
8};
9