win32 helper stub

This commit is contained in:
antelle 2016-04-19 21:03:02 +03:00
parent f9d593356b
commit 93fbe645a2
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
'use strict';
var Launcher = require('../../launcher');
var AutoTypeHelper = function() {
};
AutoTypeHelper.prototype.getActiveWindowTitle = function(callback) {
callback('Not implemented');
};
module.exports = AutoTypeHelper;