From 3bac58db01eeff0c871c0400b3b7c5d9ae9bc65a Mon Sep 17 00:00:00 2001 From: iapyang Date: Thu, 8 Aug 2019 15:22:29 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20options=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/core/ob.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/core/ob.ts b/typescript/core/ob.ts index 5279babe7..16ce71024 100644 --- a/typescript/core/ob.ts +++ b/typescript/core/ob.ts @@ -1,7 +1,7 @@ export interface _OB { props: Props | ((config: T) => Props & T); - options: Props; + options: this["props"]; events?: { [eventName: string]: Function[];