File tree 1 file changed +5
-7
lines changed
packages/firestore/src/protos 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,11 @@ export interface BundledQuery {
26
26
structuredQuery ?: api . StructuredQuery | null ;
27
27
28
28
/** BundledQuery limitType */
29
- limitType ?: BundledQuery . LimitType | null ;
29
+ limitType ?: LimitType | null ;
30
30
}
31
31
32
- export namespace BundledQuery {
33
- /** LimitType enum. */
34
- type LimitType = 'FIRST' | 'LAST' ;
35
- }
32
+ /** LimitType enum. */
33
+ type LimitType = 'FIRST' | 'LAST' ;
36
34
37
35
/** Properties of a NamedQuery. */
38
36
export interface NamedQuery {
@@ -59,7 +57,7 @@ export interface BundledDocumentMetadata {
59
57
}
60
58
61
59
/** Properties of a BundleMetadata. */
62
- interface BundleMetadata {
60
+ export interface BundleMetadata {
63
61
/** BundleMetadata id */
64
62
id ?: string | null ;
65
63
@@ -77,7 +75,7 @@ interface BundleMetadata {
77
75
}
78
76
79
77
/** Properties of a BundleElement. */
80
- interface BundleElement {
78
+ export interface BundleElement {
81
79
/** BundleElement metadata */
82
80
metadata ?: BundleMetadata | null ;
83
81
You can’t perform that action at this time.
0 commit comments