2018-07-20 21:29:51 +00:00
|
|
|
import ArrayProxy from '@ember/array/proxy';
|
|
|
|
import PromiseProxyMixin from '@ember/object/promise-proxy-mixin';
|
2020-06-10 13:49:16 +00:00
|
|
|
import classic from 'ember-classic-decorator';
|
2018-07-20 21:29:51 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@classic
|
2021-12-28 16:08:12 +00:00
|
|
|
export default class PromiseArray extends ArrayProxy.extend(
|
|
|
|
PromiseProxyMixin
|
|
|
|
) {}
|