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