mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Fix tslint errors
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { ScrollView as ScrollViewDefinition } from "ui/scroll-view";
|
||||
import { ContentView, EventData, Property } from "ui/content-view";
|
||||
import { ContentView, Property } from "ui/content-view";
|
||||
|
||||
export * from "ui/content-view";
|
||||
|
||||
@@ -79,7 +79,6 @@ export abstract class ScrollViewBase extends ContentView implements ScrollViewDe
|
||||
public abstract scrollToHorizontalOffset(value: number, animated: boolean);
|
||||
}
|
||||
|
||||
|
||||
export const orientationProperty = new Property<ScrollViewBase, "horizontal" | "vertical">({
|
||||
name: "orientation", defaultValue: "vertical", affectsLayout: true, valueConverter: (value) => {
|
||||
if (value === "vertical") {
|
||||
|
||||
Reference in New Issue
Block a user