We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac4ff54 commit 22c88a1Copy full SHA for 22c88a1
packages/-ember-data/addon/-private/core.ts
@@ -8,8 +8,9 @@ export interface DS extends Namespace {
8
name: string;
9
}
10
11
-export const DS = Namespace.create({
12
- // @ts-expect-error ember-source types are wrong
+type CreateArgs = { VERSION: string; name: string };
+
13
+export const DS = (Namespace as unknown as { create(args: CreateArgs): DS }).create({
14
VERSION: VERSION,
15
name: 'DS',
16
});
0 commit comments