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()`.
  • Loading branch information
chriskrycho committed Dec 16, 2022
1 parent d48cd00 commit 67fc6c4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions addon/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 67fc6c4

Please sign in to comment.