@@ -1683,7 +1683,7 @@ export abstract class QueryConstraint {
1683
1683
}
1684
1684
1685
1685
class QueryEndAtConstraint extends QueryConstraint {
1686
- readonly type : 'endAt' ;
1686
+ readonly type = 'endAt' ;
1687
1687
1688
1688
constructor (
1689
1689
private readonly _value : number | string | boolean | null ,
@@ -1748,7 +1748,7 @@ export function endAt(
1748
1748
}
1749
1749
1750
1750
class QueryEndBeforeConstraint extends QueryConstraint {
1751
- readonly type : 'endBefore' ;
1751
+ readonly type = 'endBefore' ;
1752
1752
1753
1753
constructor (
1754
1754
private readonly _value : number | string | boolean | null ,
@@ -1809,7 +1809,7 @@ export function endBefore(
1809
1809
}
1810
1810
1811
1811
class QueryStartAtConstraint extends QueryConstraint {
1812
- readonly type : 'startAt' ;
1812
+ readonly type = 'startAt' ;
1813
1813
1814
1814
constructor (
1815
1815
private readonly _value : number | string | boolean | null ,
@@ -1873,7 +1873,7 @@ export function startAt(
1873
1873
}
1874
1874
1875
1875
class QueryStartAfterConstraint extends QueryConstraint {
1876
- readonly type : 'startAfter' ;
1876
+ readonly type = 'startAfter' ;
1877
1877
1878
1878
constructor (
1879
1879
private readonly _value : number | string | boolean | null ,
@@ -1933,7 +1933,7 @@ export function startAfter(
1933
1933
}
1934
1934
1935
1935
class QueryLimitToFirstConstraint extends QueryConstraint {
1936
- readonly type : 'limitToFirst' ;
1936
+ readonly type = 'limitToFirst' ;
1937
1937
1938
1938
constructor ( private readonly _limit : number ) {
1939
1939
super ( ) ;
@@ -1981,7 +1981,7 @@ export function limitToFirst(limit: number): QueryConstraint {
1981
1981
}
1982
1982
1983
1983
class QueryLimitToLastConstraint extends QueryConstraint {
1984
- readonly type : 'limitToLast' ;
1984
+ readonly type = 'limitToLast' ;
1985
1985
1986
1986
constructor ( private readonly _limit : number ) {
1987
1987
super ( ) ;
@@ -2030,7 +2030,7 @@ export function limitToLast(limit: number): QueryConstraint {
2030
2030
}
2031
2031
2032
2032
class QueryOrderByChildConstraint extends QueryConstraint {
2033
- readonly type : 'orderByChild' ;
2033
+ readonly type = 'orderByChild' ;
2034
2034
2035
2035
constructor ( private readonly _path : string ) {
2036
2036
super ( ) ;
@@ -2093,7 +2093,7 @@ export function orderByChild(path: string): QueryConstraint {
2093
2093
}
2094
2094
2095
2095
class QueryOrderByKeyConstraint extends QueryConstraint {
2096
- readonly type : 'orderByKey' ;
2096
+ readonly type = 'orderByKey' ;
2097
2097
2098
2098
_apply < T > ( query : QueryImpl ) : QueryImpl {
2099
2099
validateNoPreviousOrderByCall ( query , 'orderByKey' ) ;
@@ -2121,7 +2121,7 @@ export function orderByKey(): QueryConstraint {
2121
2121
}
2122
2122
2123
2123
class QueryOrderByPriorityConstraint extends QueryConstraint {
2124
- readonly type : 'orderByPriority' ;
2124
+ readonly type = 'orderByPriority' ;
2125
2125
2126
2126
_apply < T > ( query : QueryImpl ) : QueryImpl {
2127
2127
validateNoPreviousOrderByCall ( query , 'orderByPriority' ) ;
@@ -2149,7 +2149,7 @@ export function orderByPriority(): QueryConstraint {
2149
2149
}
2150
2150
2151
2151
class QueryOrderByValueConstraint extends QueryConstraint {
2152
- readonly type : 'orderByValue' ;
2152
+ readonly type = 'orderByValue' ;
2153
2153
2154
2154
_apply < T > ( query : QueryImpl ) : QueryImpl {
2155
2155
validateNoPreviousOrderByCall ( query , 'orderByValue' ) ;
@@ -2178,7 +2178,7 @@ export function orderByValue(): QueryConstraint {
2178
2178
}
2179
2179
2180
2180
class QueryEqualToValueConstraint extends QueryConstraint {
2181
- readonly type : 'equalTo' ;
2181
+ readonly type = 'equalTo' ;
2182
2182
2183
2183
constructor (
2184
2184
private readonly _value : number | string | boolean | null ,
0 commit comments