UNPKG

ngx-agora

Version:

Angular wrapper for Agora RTC client (https://www.agora.io/en/)

15 lines (14 loc) 493 B
/** * This interface contains information on the screen source * @see [DesktopCapturerSource](https://electronjs.org/docs/api/structures/desktop-capturer-source). */ export interface DesktopCapturerSource { /** ID of the screen source. */ id: string; /** Name of the screen source. */ name: string; /** Thumbnail of the screen source. * @see [nativeImage](https://electronjs.org/docs/api/native-image#nativeimage) for supported types. */ thumbnail: any; }