@@ -13,7 +13,7 @@ export class BurnUpQuery {
1313 to : Temporal . PlainDateLike | string ;
1414 categories ?: string [ ] ;
1515 timeZone ?: Temporal . TimeZoneLike ;
16- } ) : BurnUpQuery {
16+ } ) {
1717 return new BurnUpQuery ( from , to , categories , timeZone ) ;
1818 }
1919
@@ -27,7 +27,7 @@ export class BurnUpQuery {
2727 to ?: Temporal . PlainDateLike | string ;
2828 categories ?: string [ ] ;
2929 timeZone ?: Temporal . TimeZoneLike ;
30- } = { } ) : BurnUpQuery {
30+ } = { } ) {
3131 return BurnUpQuery . create ( { from, to, categories, timeZone } ) ;
3232 }
3333
@@ -58,7 +58,7 @@ export class BurnUpQueryResult {
5858 data ?: BurnUpData [ ] ;
5959 totalThroughput ?: number ;
6060 categories ?: string [ ] ;
61- } = { } ) : BurnUpQueryResult {
61+ } = { } ) {
6262 return new BurnUpQueryResult ( data , totalThroughput , categories ) ;
6363 }
6464
@@ -70,7 +70,7 @@ export class BurnUpQueryResult {
7070 data ?: BurnUpData [ ] ;
7171 totalThroughput ?: number ;
7272 categories ?: string [ ] ;
73- } = { } ) : BurnUpQueryResult {
73+ } = { } ) {
7474 return BurnUpQueryResult . create ( { data, totalThroughput, categories } ) ;
7575 }
7676
@@ -98,7 +98,7 @@ export class BurnUpData {
9898 date : Temporal . PlainDate | string ;
9999 throughput : number ;
100100 cumulativeThroughput : number ;
101- } ) : BurnUpData {
101+ } ) {
102102 return new BurnUpData ( date , throughput , cumulativeThroughput ) ;
103103 }
104104
@@ -110,7 +110,7 @@ export class BurnUpData {
110110 date ?: Temporal . PlainDate | string ;
111111 throughput ?: number ;
112112 cumulativeThroughput ?: number ;
113- } = { } ) : BurnUpData {
113+ } = { } ) {
114114 return BurnUpData . create ( { date, throughput, cumulativeThroughput } ) ;
115115 }
116116
0 commit comments