Skip to content

Commit

Permalink
format js
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthecoder committed Oct 7, 2024
1 parent 59e4130 commit e17af4f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions shared-data/js/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,14 @@ export interface RoundedCuboidSegment {
bottomHeight: number
}

export type WellSegment = CuboidalFrustum | ConicalFrustum | SquaredConeSegment | SphericalSegment | RoundedCuboidSegment

export type InnerWellGeometry = {
export type WellSegment =
| CuboidalFrustum
| ConicalFrustum
| SquaredConeSegment
| SphericalSegment
| RoundedCuboidSegment

export interface InnerWellGeometry {
sections: WellSegment[]
}

Expand Down

0 comments on commit e17af4f

Please sign in to comment.