We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa29669 commit 64351d2Copy full SHA for 64351d2
package.json
@@ -142,5 +142,12 @@
142
"volta": {
143
"node": "18.20.5",
144
"yarn": "1.22.19"
145
+ },
146
+ "typesVersions": {
147
+ "*": {
148
+ "*": [
149
+ "types/*"
150
+ ]
151
+ }
152
}
153
types/test-support/load.d.ts
@@ -0,0 +1,5 @@
1
+import type { TestLoader } from 'ember-qunit/test-loader';
2
+
3
+declare class EmberExamTestLoader extends TestLoader {}
4
5
+export default function loadEmberExam(): EmberExamTestLoader;
types/test-support/start.d.ts
+import type { start } from 'ember-qunit';
+type QUnitStartOptions = Parameters<typeof start>[0];
+export default function startEmberExam(options?: QUnitStartOptions): void;
0 commit comments