From e2e975710dcab86a7ab81033568f824ac8479f39 Mon Sep 17 00:00:00 2001 From: Bryan Mishkin <698306+bmish@users.noreply.github.com> Date: Thu, 28 Jul 2022 12:51:38 -0400 Subject: [PATCH] fix: `no-use-before-define` linting violation in `environment.d.ts` --- .../__config_root__/config/environment.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blueprint-files/ember-cli-typescript/__config_root__/config/environment.d.ts b/blueprint-files/ember-cli-typescript/__config_root__/config/environment.d.ts index 3639a2364..a8f92b9fe 100644 --- a/blueprint-files/ember-cli-typescript/__config_root__/config/environment.d.ts +++ b/blueprint-files/ember-cli-typescript/__config_root__/config/environment.d.ts @@ -1,5 +1,3 @@ -export default config; - /** * Type declarations for * import config from 'my-app/config/environment' @@ -12,3 +10,5 @@ declare const config: { rootURL: string; APP: Record; }; + +export default config;