Skip to content

Commit

Permalink
Removed useless imports/exports which could cause circular dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienCastex committed Jun 10, 2017
1 parent 30ea0d3 commit 4e14885
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions lib/manager/FSManager.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { ISerializer } from './ISerializer';
import { IResource, ResourceType } from '../resource/IResource';
export { PhysicalFSManager } from './PhysicalFSManager';
export { VirtualFSManager } from './VirtualFSManager';
export { FSPath } from './FSPath';
export interface FSManager extends ISerializer {
uid: string;
Expand Down
4 changes: 0 additions & 4 deletions lib/manager/FSManager.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var PhysicalFSManager_1 = require("./PhysicalFSManager");
exports.PhysicalFSManager = PhysicalFSManager_1.PhysicalFSManager;
var VirtualFSManager_1 = require("./VirtualFSManager");
exports.VirtualFSManager = VirtualFSManager_1.VirtualFSManager;
var FSPath_1 = require("./FSPath");
exports.FSPath = FSPath_1.FSPath;
2 changes: 0 additions & 2 deletions src/manager/FSManager.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { ISerializer, SerializedObject } from './ISerializer'
import { IResource, ResourceType } from '../resource/IResource'

export { PhysicalFSManager } from './PhysicalFSManager'
export { VirtualFSManager } from './VirtualFSManager'
export { FSPath } from './FSPath'

export interface FSManager extends ISerializer
Expand Down

0 comments on commit 4e14885

Please sign in to comment.