Skip to content

Commit 9e9c592

Browse files
authored
Fix error TS2564
1 parent 59254d9 commit 9e9c592

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/templates/core/CancelablePromise.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface OnCancel {
2121
}
2222

2323
export class CancelablePromise<T> implements Promise<T> {
24-
readonly [Symbol.toStringTag]: string;
24+
readonly [Symbol.toStringTag]!: string;
2525

2626
private _isResolved: boolean;
2727
private _isRejected: boolean;

0 commit comments

Comments
 (0)