egg 3.9.1 → 3.9.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 +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -722,7 +722,7 @@ declare module 'egg' {
|
|
|
722
722
|
* Get current execute ctx, maybe undefined
|
|
723
723
|
* @returns {Context} ctx - current execute Context
|
|
724
724
|
*/
|
|
725
|
-
get
|
|
725
|
+
get currentContext(): Context;
|
|
726
726
|
}
|
|
727
727
|
|
|
728
728
|
export interface IApplicationLocals extends PlainObject { }
|