File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
packages/firestore/lite/src/api Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ export class DocumentReference<T = DocumentData> extends DocumentKeyReference<
129
129
}
130
130
}
131
131
132
- export class Query < T = DocumentData > implements Query < T > {
132
+ export class Query < T = DocumentData > {
133
133
readonly type : 'query' | 'collection' = 'query' ;
134
134
135
135
// This is the lite version of the Query class in the main SDK.
@@ -154,7 +154,7 @@ export type QueryConstraintType =
154
154
| 'endAt'
155
155
| 'endBefore' ;
156
156
157
- export abstract class QueryConstraint implements QueryConstraint {
157
+ export abstract class QueryConstraint {
158
158
abstract readonly type : QueryConstraintType ;
159
159
160
160
/**
@@ -393,8 +393,7 @@ function newQueryBoundFromDocOrFields<T>(
393
393
}
394
394
}
395
395
396
- export class CollectionReference < T = DocumentData > extends Query < T >
397
- implements CollectionReference < T > {
396
+ export class CollectionReference < T = DocumentData > extends Query < T > {
398
397
readonly type = 'collection' ;
399
398
400
399
constructor (
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ import { invokeCommitRpc } from '../../../src/remote/datastore';
40
40
import { FieldPath } from './field_path' ;
41
41
import { getDatastore } from './components' ;
42
42
43
- export class WriteBatch implements WriteBatch {
43
+ export class WriteBatch {
44
44
// This is the lite version of the WriteBatch API used in the legacy SDK. The
45
45
// class is a close copy but takes different input types.
46
46
You can’t perform that action at this time.
0 commit comments