@diyaner/egg-typeorm 2.0.1 → 2.0.2
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/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ declare module "egg" {
|
|
|
49
49
|
};
|
|
50
50
|
};
|
|
51
51
|
/** 挂载app上,可动态创建typeORM实例 */
|
|
52
|
-
createTypeORMDataSources: createTypeORMDataSources;
|
|
52
|
+
createTypeORMDataSources: typeof createTypeORMDataSources;
|
|
53
53
|
};
|
|
54
54
|
}
|
|
55
55
|
|
|
@@ -72,7 +72,7 @@ declare module "egg" {
|
|
|
72
72
|
};
|
|
73
73
|
};
|
|
74
74
|
/** 挂载app上,可动态创建typeORM实例 */
|
|
75
|
-
createTypeORMDataSources: createTypeORMDataSources;
|
|
75
|
+
createTypeORMDataSources: typeof createTypeORMDataSources;
|
|
76
76
|
};
|
|
77
77
|
}
|
|
78
78
|
}
|