File tree 7 files changed +9
-9
lines changed 7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export interface IApplicationWindowOpenParams {
8
8
windowUrl : string ;
9
9
}
10
10
11
- export default class ApplicationWindow {
11
+ export class ApplicationWindow {
12
12
private _browserWindow : GitHubElectron . BrowserWindow ;
13
13
14
14
open ( { windowUrl } : IApplicationWindowOpenParams ) : void {
Original file line number Diff line number Diff line change 2
2
// MIT License, see LICENSE file for full terms.
3
3
4
4
import * as url from 'url' ;
5
- import ApplicationWindow from './application-window' ;
5
+ import { ApplicationWindow } from './application-window' ;
6
6
import { AppProtocolHandler } from './protocol-handlers' ;
7
7
8
8
export interface IApplicationArgs {
9
9
/** Path to the root directory of the application. */
10
10
rootPath : string ;
11
11
}
12
12
13
- export default class Application {
13
+ export class Application {
14
14
private _window : ApplicationWindow ;
15
15
private _appProtocolHandler : AppProtocolHandler ;
16
16
Original file line number Diff line number Diff line change 4
4
import * as app from 'app' ;
5
5
import * as BrowserWindow from 'browser-window' ;
6
6
import * as path from 'path' ;
7
- import Application from './application' ;
7
+ import { Application } from './application' ;
8
8
9
9
//require('crash-reporter').start();
10
10
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ interface IElementMapEntry {
21
21
* by the `register-element` custom element, and the element constructor is stored in the
22
22
* factory.
23
23
*/
24
- export default class ElementFactory {
24
+ export class ElementFactory {
25
25
private elements = new Map < /* tagName: */ string , IElementMapEntry > ( ) ;
26
26
27
27
/**
Original file line number Diff line number Diff line change 4
4
import * as pd from 'polymer-ts-decorators' ;
5
5
import * as url from 'url' ;
6
6
import * as path from 'path' ;
7
- import RendererContext from '../../renderer-context' ;
7
+ import { RendererContext } from '../../renderer-context' ;
8
8
9
9
// TODO: Consider eliminating the dependency on Polymer, this element is very simple and doesn't
10
10
// really need any of the features Polymer provides.
Original file line number Diff line number Diff line change 1
1
// Copyright (c) 2015 Vadim Macagon
2
2
// MIT License, see LICENSE file for full terms.
3
3
4
- import RendererContext from './renderer-context' ;
4
+ import { RendererContext } from './renderer-context' ;
5
5
import * as remote from 'remote' ;
6
6
7
7
window . onload = ( e : Event ) => {
Original file line number Diff line number Diff line change 2
2
// MIT License, see LICENSE file for full terms.
3
3
4
4
import * as remote from 'remote' ;
5
- import ElementFactory from './elements/element-factory' ;
5
+ import { ElementFactory } from './elements/element-factory' ;
6
6
7
7
/**
8
8
* Singleton that provides access to all core Debug Workbench functionality.
9
9
*/
10
- export default class RendererContext {
10
+ export class RendererContext {
11
11
/** Create the renderer context for the current process. */
12
12
static create ( ) : Promise < RendererContext > {
13
13
return Promise . resolve ( )
You can’t perform that action at this time.
0 commit comments