fix ts errors

This commit is contained in:
Martin Yankov
2018-08-10 15:01:38 +03:00
parent 2ccfb36ca7
commit f6ea9797f3

View File

@@ -883,11 +883,11 @@ export abstract class ViewCommon extends ViewBase implements ViewDefinition {
return undefined; return undefined;
} }
public getPositionFromFrame(frame: CGRect): { left, top, right, bottom } { public getPositionFromFrame(frame: any): { left, top, right, bottom } {
return undefined; return undefined;
} }
public getFrameFromPosition(position: { left, top, right, bottom }, insets?: { left, top }): CGRect { public getFrameFromPosition(position: { left, top, right, bottom }, insets?: { left, top }): any {
return undefined; return undefined;
} }