refactor(imports): simplify paths
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import {Type} from '../../src/facade/lang';
|
||||
import {Type} from '../facade/lang';
|
||||
import {GetterFn, SetterFn, MethodFn} from './types';
|
||||
|
||||
export interface PlatformReflectionCapabilities {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {Type, isPresent, isFunction, global, stringify, ConcreteType} from '../../src/facade/lang';
|
||||
import {BaseException} from '../../src/facade/exceptions';
|
||||
import {Type, isPresent, isFunction, global, stringify, ConcreteType} from '../facade/lang';
|
||||
import {BaseException} from '../facade/exceptions';
|
||||
import {GetterFn, SetterFn, MethodFn} from './types';
|
||||
import {PlatformReflectionCapabilities} from './platform_reflection_capabilities';
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {Type, isPresent, stringify} from '../../src/facade/lang';
|
||||
import {BaseException, WrappedException} from '../../src/facade/exceptions';
|
||||
import {Type, isPresent, stringify} from '../facade/lang';
|
||||
import {BaseException, WrappedException} from '../facade/exceptions';
|
||||
import {
|
||||
ListWrapper,
|
||||
Map,
|
||||
@ -7,7 +7,7 @@ import {
|
||||
Set,
|
||||
SetWrapper,
|
||||
StringMapWrapper
|
||||
} from '../../src/facade/collection';
|
||||
} from '../facade/collection';
|
||||
import {SetterFn, GetterFn, MethodFn} from './types';
|
||||
import {ReflectorReader} from './reflector_reader';
|
||||
import {PlatformReflectionCapabilities} from './platform_reflection_capabilities';
|
||||
|
Reference in New Issue
Block a user