Skip to content

Commit 057c674

Browse files
authored
Merge pull request #1521 from bmish/patch-1
Fix `no-use-before-define` lint violation in `environment.d.ts`
2 parents 2f7d049 + e2e9757 commit 057c674

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blueprint-files/ember-cli-typescript/__config_root__/config/environment.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
export default config;
2-
31
/**
42
* Type declarations for
53
* import config from 'my-app/config/environment'
@@ -12,3 +10,5 @@ declare const config: {
1210
rootURL: string;
1311
APP: Record<string, unknown>;
1412
};
13+
14+
export default config;

0 commit comments

Comments
 (0)