Skip to content

Commit

Permalink
migrate files that only re-export to ts to preserve type flow
Browse files Browse the repository at this point in the history
  • Loading branch information
runspired committed Apr 15, 2022
1 parent 222b455 commit ebdb459
Show file tree
Hide file tree
Showing 15 changed files with 4 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import type Application from '@ember/application';

import Store from '@ember-data/store';

function initializeStore(application) {
function initializeStore(application: Application) {
application.registerOptionsForType('serializer', { singleton: false });
application.registerOptionsForType('adapter', { singleton: false });

Expand All @@ -9,6 +11,6 @@ function initializeStore(application) {
}
}

export default function setupContainer(application) {
export default function setupContainer(application: Application) {
initializeStore(application);
}
File renamed without changes.

0 comments on commit ebdb459

Please sign in to comment.