mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-19 08:50:17 -07:00
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import DesktopCapturerSourceType from './DesktopCapturerSourceType';
|
|
|
|
interface DesktopCapturerSource {
|
|
id: string;
|
|
type: DesktopCapturerSourceType;
|
|
name: string;
|
|
}
|