2020-05-22 19:46:22 +00:00
|
|
|
import { View } from 'electron';
|
2020-03-22 10:11:43 +00:00
|
|
|
|
|
|
|
const { ImageView } = process.electronBinding('image_view');
|
|
|
|
|
|
|
|
Object.setPrototypeOf(ImageView.prototype, View.prototype);
|
|
|
|
|
2020-05-22 19:46:22 +00:00
|
|
|
export default ImageView;
|