mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-26 02:50:01 +00:00
7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
import Ember from 'ember';
|
|
|
|
// opt-in to allow types for Ember Array Prototype extensions
|
|
declare global {
|
|
interface Array<T> extends Ember.ArrayPrototypeExtensions<T> {}
|
|
}
|