mirror of
https://github.com/electron/electron.git
synced 2026-01-29 09:18:18 -05:00
9 lines
217 B
JavaScript
9 lines
217 B
JavaScript
const electron = require('electron');
|
|
|
|
const { View } = electron;
|
|
const { ImageView } = process.electronBinding('image_view');
|
|
|
|
Object.setPrototypeOf(ImageView.prototype, View.prototype);
|
|
|
|
module.exports = ImageView;
|