Skip to content

Commit

Permalink
Export remaining
Browse files Browse the repository at this point in the history
  • Loading branch information
prettymuchbryce committed Sep 19, 2020
1 parent 6847973 commit f3a3acc
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
import legacyCodes from './legacy';

import {
getStatusCode,
getStatusText,
} from './utils-functions';

export {
getStatusCode,
getReasonPhrase,
getStatusText,
} from './utils-functions';

export {
StatusCodes,
} from './status-codes';
Expand All @@ -6,10 +19,10 @@ export {
ReasonPhrases,
} from './reason-phrases';

export {
export * from './legacy';

export default {
...legacyCodes,
getStatusCode,
getStatusText,
getReasonPhrase,
} from './utils-functions';

export * from './legacy';
};

0 comments on commit f3a3acc

Please sign in to comment.