Skip to content

Commit

Permalink
refactor(typings): relocate config
Browse files Browse the repository at this point in the history
See: rapidjs#41
* add missing files to commit
  • Loading branch information
mgred committed Apr 30, 2018
1 parent f2d02fb commit 0615af6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { CustomRouteOptions } from './../core/custom-route';
import { Route } from '../typings/routes.d';
import { Route } from './route';
import AxiosAdapter from './../core/adapters/axios-adapter';
import { RequestType } from '../core/request';

Expand Down
2 changes: 1 addition & 1 deletion src/core/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import pluralize from 'pluralize';
import { Config } from './config';
import { CustomRouteOptions } from './custom-route';
import { RequestData } from './request';
import { Route } from '../typings/routes.d';
import { Route } from './route';
import { sanitizeUrl } from '../utils/url';
import Debugger from './../debug/debugger';
import Defaults from './defaults';
Expand Down

0 comments on commit 0615af6

Please sign in to comment.