@d-mok/quasar-app-extension-quasar-axe 2.2.2 → 2.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -42,11 +42,11 @@ export function ORM<
|
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
function getTable<EBase extends
|
|
46
|
-
type T = InstanceType<EBase>
|
|
45
|
+
function getTable<EBase extends RBase>(EClass: EBase) {
|
|
46
|
+
type T = InstanceType<EBase>
|
|
47
47
|
|
|
48
48
|
function convertor(host: TableClass) {
|
|
49
|
-
return ($: R) => new
|
|
49
|
+
return ($: R) => new EClass($, host) as T
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
function core(host: TableClass) {
|