native-theme.ts 259 B

12345678
  1. import { EventEmitter } from 'events';
  2. const { NativeTheme, nativeTheme } = process.electronBinding('native_theme');
  3. Object.setPrototypeOf(NativeTheme.prototype, EventEmitter.prototype);
  4. EventEmitter.call(nativeTheme as any);
  5. module.exports = nativeTheme;