electron/lib/browser/api/views/layout-manager.js

9 lines
167 B
JavaScript
Raw Normal View History

2020-03-20 20:28:31 +00:00
'use strict';
2018-05-22 08:08:27 +00:00
2020-03-20 20:28:31 +00:00
const { LayoutManager } = process.electronBinding('layout_manager');
2018-05-22 08:08:27 +00:00
LayoutManager.prototype._init = function () {
2020-03-20 20:28:31 +00:00
};
2018-05-22 08:08:27 +00:00
2020-03-20 20:28:31 +00:00
module.exports = LayoutManager;