Skip to content

Commit

Permalink
Cleaned imports on the PhysicalResource class
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienCastex committed May 17, 2017
1 parent d1053ec commit 5115994
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/resource/physical/PhysicalResource.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { IResource, SimpleCallback, ReturnCallback, Return2Callback, ResourceType } from '../IResource';
import { FSManager } from '../../manager/FSManager';
import { StandardResource } from '../std/StandardResource';
import { FSManager } from '../../manager/FSManager';
export declare abstract class PhysicalResource extends StandardResource {
realPath: string;
name: string;
Expand Down
2 changes: 1 addition & 1 deletion src/resource/physical/PhysicalResource.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { IResource, SimpleCallback, ReturnCallback, Return2Callback, ResourceType } from '../IResource'
import { PhysicalFSManager } from '../../manager/PhysicalFSManager'
import { FSManager, FSPath } from '../../manager/FSManager'
import { StandardResource } from '../std/StandardResource'
import { FSManager } from '../../manager/FSManager'
import * as path from 'path'
import * as fs from 'fs'

Expand Down

0 comments on commit 5115994

Please sign in to comment.