You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by hu...@apache.org on 2021/07/04 06:45:33 UTC

[dubbo-js] 01/02: fixed IDubboService type

This is an automated email from the ASF dual-hosted git repository.

hufeng pushed a commit to tag 4.0.0
in repository https://gitbox.apache.org/repos/asf/dubbo-js.git

commit 14e11f924b9ce52a40e22683aef4d8c0fc92e30d
Author: hufeng <fe...@gmail.com>
AuthorDate: Sun Jul 4 11:30:09 2021 +0800

    fixed IDubboService type
---
 packages/dubbo-service/src/types.ts | 2 --
 1 file changed, 2 deletions(-)

diff --git a/packages/dubbo-service/src/types.ts b/packages/dubbo-service/src/types.ts
index d9f209e..3f34358 100644
--- a/packages/dubbo-service/src/types.ts
+++ b/packages/dubbo-service/src/types.ts
@@ -33,8 +33,6 @@ export interface IDubboServerProps {
 
 export interface IDubboService {
   dubboInterface: string
-  version?: string
-  group?: string
   methods: { [key in string]: Function }
 }