Skip to content

Commit

Permalink
Bugfix/types: Resolver extends EmberObject
Browse files Browse the repository at this point in the history
Without this, it doesn't get exported as a class people can actually
instantiate with `Resolver.create()`.

(cherry picked from commit 67fc6c4)
  • Loading branch information
chriskrycho committed Dec 20, 2022
1 parent af9db19 commit 769ad35
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
import { Resolver as ResolverContract } from "@ember/owner";
import EmberObject from "@ember/object";
export default class Resolver extends EmberObject {}
export default interface Resolver extends Required<ResolverContract> {}

0 comments on commit 769ad35

Please sign in to comment.