electron/lib/browser/api/desktop-capturer.ts

6 lines
191 B
TypeScript
Raw Normal View History

import { getSourcesImpl } from '@electron/internal/browser/desktop-capturer';
export async function getSources (options: Electron.SourcesOptions) {
return getSourcesImpl(null, options);
}