Skip to content

Commit

Permalink
Merge pull request #1876 from uProxy/fix-typings-cca
Browse files Browse the repository at this point in the history
Fix a typing issue for the cca connector
  • Loading branch information
lucyhe committed Sep 8, 2015
2 parents 9f5a625 + 7c421c3 commit d8b1f4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cca/app/scripts/cordova_core_connector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
*/
/// <reference path='../../../../../third_party/typings/es6-promise/es6-promise.d.ts' />
/// <reference path='../../../../../third_party/typings/chrome/chrome.d.ts' />
/// <reference path='../../../../../third_party/typings/freedom/freedom.d.ts' />
import browser_connector = require('../../../interfaces/browser_connector');
import uproxy_core_api = require('../../../interfaces/uproxy_core_api');

import user_interface = require('../../../generic_ui/scripts/ui');

import freedom_types = require('freedom.types');

class CordovaCoreConnector implements browser_connector.CoreBrowserConnector {

private appChannel_ :freedom_types.OnAndEmit<any,any>;
private appChannel_ :freedom.OnAndEmit<any,any>;

// Status object indicating whether we're connected to the app.
public status :browser_connector.StatusObject;
Expand Down

0 comments on commit d8b1f4d

Please sign in to comment.