File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212
1313### Pending Fixed
1414
15+ ### v14.35.1 - 2025-04-14
16+
17+ - :bug : Fix TS Build Error
18+
1519### v14.35.0 - 2025-04-14
1620
1721- :rocket : Add support for additional Ellipse Types
Original file line number Diff line number Diff line change @@ -394,11 +394,16 @@ export async function to_geojson(
394394 || ! raw . event . detail . shape . ellipse . _attributes
395395 ) throw new Err ( 400 , null , `${ raw . event . _attributes . type } (Circle) must define ellipse shape value` )
396396
397- const ellipse = {
397+ const ellipse : {
398+ major : number ;
399+ minor : number ;
400+ angle : number ;
401+ swapAxis ?: boolean ;
402+ } = {
398403 major : Number ( raw . event . detail . shape . ellipse . _attributes . major ) ,
399404 minor : Number ( raw . event . detail . shape . ellipse . _attributes . minor ) ,
400405 angle : Number ( raw . event . detail . shape . ellipse . _attributes . angle )
401- } as Static < typeof Feature > [ 'properties' ] [ 'shape' ] [ 'ellipse' ]
406+ }
402407
403408 if ( raw . event . detail . shape . ellipse . _attributes . swapAxis !== undefined ) {
404409 ellipse . swapAxis = Boolean ( raw . event . detail . shape . ellipse . _attributes . swapAxis ) ;
You can’t perform that action at this time.
0 commit comments