Skip to content

Commit e7f6a8a

Browse files
committed
chore: reafctor
1 parent 8dca885 commit e7f6a8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gesturehandler/gesturehandler.common.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ export abstract class BaseNative<T, U extends {}> extends Observable {
130130
disposeNativeView() {
131131
this.native = null;
132132
}
133-
getNative = () => {
133+
getNative() {
134134
if (!this.native) {
135135
this.native = this.createNative(this.options);
136136
this.initNativeView(this.native, this.options);
137137
}
138138
return this.native;
139-
};
139+
}
140140
abstract createNative(options: U): T;
141141
}
142142

0 commit comments

Comments
 (0)