Skip to content

Commit 3ada7b6

Browse files
committed
updated codeparts
1 parent fecb633 commit 3ada7b6

8 files changed

+24
-24
lines changed

src/specs/RNMBXCircleLayerNativeComponent.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ type CommonProps = {
1717

1818
aboveLayerID?: OptionalProp<string>;
1919
belowLayerID?: OptionalProp<string>;
20-
layerIndex?: OptionalProp<Int32>;
20+
layerIndex?: OptionalProp<CodegenTypes.Int32>;
2121

22-
maxZoomLevel?: OptionalProp<Double>;
23-
minZoomLevel?: OptionalProp<Double>;
22+
maxZoomLevel?: OptionalProp<CodegenTypes.Double>;
23+
minZoomLevel?: OptionalProp<CodegenTypes.Double>;
2424
sourceLayerID?: OptionalProp<string>;
2525
slot?: OptionalProp<Slot>;
2626
};

src/specs/RNMBXFillLayerNativeComponent.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ type CommonProps = {
1717

1818
aboveLayerID?: OptionalProp<string>;
1919
belowLayerID?: OptionalProp<string>;
20-
layerIndex?: OptionalProp<Int32>;
20+
layerIndex?: OptionalProp<CodegenTypes.Int32>;
2121

22-
maxZoomLevel?: OptionalProp<Double>;
23-
minZoomLevel?: OptionalProp<Double>;
22+
maxZoomLevel?: OptionalProp<CodegenTypes.Double>;
23+
minZoomLevel?: OptionalProp<CodegenTypes.Double>;
2424
sourceLayerID?: OptionalProp<string>;
2525
slot?: OptionalProp<Slot>;
2626
};

src/specs/RNMBXHeatmapLayerNativeComponent.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ type CommonProps = {
1717

1818
aboveLayerID?: OptionalProp<string>;
1919
belowLayerID?: OptionalProp<string>;
20-
layerIndex?: OptionalProp<Int32>;
20+
layerIndex?: OptionalProp<CodegenTypes.Int32>;
2121

22-
maxZoomLevel?: OptionalProp<Double>;
23-
minZoomLevel?: OptionalProp<Double>;
22+
maxZoomLevel?: OptionalProp<CodegenTypes.Double>;
23+
minZoomLevel?: OptionalProp<CodegenTypes.Double>;
2424
sourceLayerID?: OptionalProp<string>;
2525
slot?: OptionalProp<Slot>;
2626
};

src/specs/RNMBXLineLayerNativeComponent.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ type CommonProps = {
1717

1818
aboveLayerID?: OptionalProp<string>;
1919
belowLayerID?: OptionalProp<string>;
20-
layerIndex?: OptionalProp<Int32>;
20+
layerIndex?: OptionalProp<CodegenTypes.Int32>;
2121

22-
maxZoomLevel?: OptionalProp<Double>;
23-
minZoomLevel?: OptionalProp<Double>;
22+
maxZoomLevel?: OptionalProp<CodegenTypes.Double>;
23+
minZoomLevel?: OptionalProp<CodegenTypes.Double>;
2424
sourceLayerID?: OptionalProp<string>;
2525
slot?: OptionalProp<Slot>;
2626
};

src/specs/RNMBXModelLayerNativeComponent.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ type CommonProps = {
1818

1919
aboveLayerID?: OptionalProp<string>;
2020
belowLayerID?: OptionalProp<string>;
21-
layerIndex?: OptionalProp<Int32>;
21+
layerIndex?: OptionalProp<CodegenTypes.Int32>;
2222

23-
maxZoomLevel?: OptionalProp<Double>;
24-
minZoomLevel?: OptionalProp<Double>;
23+
maxZoomLevel?: OptionalProp<CodegenTypes.Double>;
24+
minZoomLevel?: OptionalProp<CodegenTypes.Double>;
2525
sourceLayerID?: OptionalProp<string>;
2626
slot?: OptionalProp<Slot>;
2727
};

src/specs/RNMBXRasterLayerNativeComponent.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ type CommonProps = {
1717

1818
aboveLayerID?: OptionalProp<string>;
1919
belowLayerID?: OptionalProp<string>;
20-
layerIndex?: OptionalProp<Int32>;
20+
layerIndex?: OptionalProp<CodegenTypes.Int32>;
2121

22-
maxZoomLevel?: OptionalProp<Double>;
23-
minZoomLevel?: OptionalProp<Double>;
22+
maxZoomLevel?: OptionalProp<CodegenTypes.Double>;
23+
minZoomLevel?: OptionalProp<CodegenTypes.Double>;
2424
sourceLayerID?: OptionalProp<string>;
2525
slot?: OptionalProp<Slot>;
2626
};

src/specs/RNMBXSymbolLayerNativeComponent.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ type CommonProps = {
1717

1818
aboveLayerID?: OptionalProp<string>;
1919
belowLayerID?: OptionalProp<string>;
20-
layerIndex?: OptionalProp<Int32>;
20+
layerIndex?: OptionalProp<CodegenTypes.Int32>;
2121

22-
maxZoomLevel?: OptionalProp<Double>;
23-
minZoomLevel?: OptionalProp<Double>;
22+
maxZoomLevel?: OptionalProp<CodegenTypes.Double>;
23+
minZoomLevel?: OptionalProp<CodegenTypes.Double>;
2424
sourceLayerID?: OptionalProp<string>;
2525
slot?: OptionalProp<Slot>;
2626
};

src/specs/codeparts/CommonLayerNativeComponentsProps.codepart-ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ type CommonProps = {
99

1010
aboveLayerID?: OptionalProp<string>;
1111
belowLayerID?: OptionalProp<string>;
12-
layerIndex?: OptionalProp<Int32>;
12+
layerIndex?: OptionalProp<CodegenTypes.Int32>;
1313

14-
maxZoomLevel?: OptionalProp<Double>;
15-
minZoomLevel?: OptionalProp<Double>;
14+
maxZoomLevel?: OptionalProp<CodegenTypes.Double>;
15+
minZoomLevel?: OptionalProp<CodegenTypes.Double>;
1616
sourceLayerID?: OptionalProp<string>;
1717
slot?: OptionalProp<Slot>;
1818
};

0 commit comments

Comments
 (0)