Added genType to XYShape to fix tests

This commit is contained in:
Ozzie Gooen 2022-04-05 15:23:39 -04:00
parent 9b494462d4
commit 6c282b0c70

View File

@ -1,12 +1,16 @@
@genType
type xyShape = {
xs: array<float>,
ys: array<float>,
}
@genType
type interpolationStrategy = [
| #Stepwise
| #Linear
]
@genType
type extrapolationStrategy = [
| #UseZero
| #UseOutermostPoints