We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents faf5b3d + 6b6c896 commit 9d17480Copy full SHA for 9d17480
ts/blueprints/ember-cli-typescript/index.js
@@ -6,6 +6,9 @@ const path = require('path');
6
const APP_DECLARATIONS = `import Ember from 'ember';
7
8
declare global {
9
+ // Prevents ESLint from "fixing" this via its auto-fix to turn it into a type
10
+ // alias (e.g. after running any Ember CLI generator)
11
+ // eslint-disable-next-line @typescript-eslint/no-empty-interface
12
interface Array<T> extends Ember.ArrayPrototypeExtensions<T> {}
13
// interface Function extends Ember.FunctionPrototypeExtensions {}
14
}
0 commit comments