UNPKG

634 BTypeScriptView Raw
1declare module '@ember/object/computed' {
2 export { ComputedProperty as default, expandProperties, alias } from '@ember/-internals/metal';
3 export {
4 empty,
5 notEmpty,
6 none,
7 not,
8 bool,
9 match,
10 equal,
11 gt,
12 gte,
13 lt,
14 lte,
15 oneWay,
16 oneWay as reads,
17 readOnly,
18 deprecatingAlias,
19 and,
20 or,
21 } from '@ember/object/lib/computed/computed_macros';
22 export {
23 sum,
24 min,
25 max,
26 map,
27 sort,
28 setDiff,
29 mapBy,
30 filter,
31 filterBy,
32 uniq,
33 uniqBy,
34 union,
35 intersect,
36 collect,
37 } from '@ember/object/lib/computed/reduce_computed_macros';
38}