Skip to content

Commit a31439a

Browse files
committed
Fix promise object
1 parent bac48c5 commit a31439a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/model/src/-private/promise-proxy-base.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import ObjectProxy from '@ember/object/proxy';
22

33
export interface PromiseObject<T> extends Promise<T> {}
4-
export class PromiseObject<T> extends ObjectProxy<T> {
4+
export class PromiseObject<T> extends ObjectProxy<T | null> {
55
declare content?: T | null;
66

77
/*

0 commit comments

Comments
 (0)