summaryrefslogtreecommitdiff
path: root/frontend-old/node_modules/@firebase/firestore/dist/firestore/lite
diff options
context:
space:
mode:
authoraltaf-creator <dev@altafcreator.com>2025-11-09 11:15:19 +0800
committeraltaf-creator <dev@altafcreator.com>2025-11-09 11:15:19 +0800
commit8eff962cab608341a6f2fedc640a0e32d96f26e2 (patch)
tree05534d1a720ddc3691d346c69b4972555820a061 /frontend-old/node_modules/@firebase/firestore/dist/firestore/lite
pain
Diffstat (limited to 'frontend-old/node_modules/@firebase/firestore/dist/firestore/lite')
-rw-r--r--frontend-old/node_modules/@firebase/firestore/dist/firestore/lite/index.d.ts29
-rw-r--r--frontend-old/node_modules/@firebase/firestore/dist/firestore/lite/register.d.ts23
2 files changed, 52 insertions, 0 deletions
diff --git a/frontend-old/node_modules/@firebase/firestore/dist/firestore/lite/index.d.ts b/frontend-old/node_modules/@firebase/firestore/dist/firestore/lite/index.d.ts
new file mode 100644
index 0000000..86dd215
--- /dev/null
+++ b/frontend-old/node_modules/@firebase/firestore/dist/firestore/lite/index.d.ts
@@ -0,0 +1,29 @@
+/**
+ * Firestore Lite
+ *
+ * @remarks Firestore Lite is a small online-only SDK that allows read
+ * and write access to your Firestore database. All operations connect
+ * directly to the backend, and `onSnapshot()` APIs are not supported.
+ * @packageDocumentation
+ */
+export { aggregateQuerySnapshotEqual, getCount, getAggregate, count, sum, average, aggregateFieldEqual } from '../src/lite-api/aggregate';
+export { AggregateField, AggregateFieldType, AggregateSpec, AggregateSpecData, AggregateQuerySnapshot, AggregateType } from '../src/lite-api/aggregate_types';
+export { FirestoreSettings as Settings } from '../src/lite-api/settings';
+export { Firestore as Firestore, EmulatorMockTokenOptions, initializeFirestore, getFirestore, terminate, connectFirestoreEmulator } from '../src/lite-api/database';
+export { DocumentData, UpdateData, WithFieldValue, PartialWithFieldValue, SetOptions, DocumentReference, Query, CollectionReference, collection, collectionGroup, doc, refEqual, queryEqual } from '../src/lite-api/reference';
+export { and, endAt, endBefore, startAt, startAfter, limit, limitToLast, where, or, orderBy, query, QueryConstraint, QueryConstraintType, QueryCompositeFilterConstraint, QueryFilterConstraint, QueryFieldFilterConstraint, QueryOrderByConstraint, QueryLimitConstraint, QueryNonFilterConstraint, QueryStartAtConstraint, QueryEndAtConstraint, OrderByDirection, WhereFilterOp } from '../src/lite-api/query';
+export { addDoc, deleteDoc, updateDoc, setDoc, getDoc, getDocs } from '../src/lite-api/reference_impl';
+export { Primitive, NestedUpdateFields, ChildUpdateFields, AddPrefixToKeys, UnionToIntersection } from '../src/lite-api/types';
+export { FieldPath, documentId } from '../src/lite-api/field_path';
+export { FieldValue } from '../src/lite-api/field_value';
+export { increment, arrayRemove, arrayUnion, serverTimestamp, deleteField, vector } from '../src/lite-api/field_value_impl';
+export { FirestoreDataConverter, DocumentSnapshot, QueryDocumentSnapshot, QuerySnapshot, snapshotEqual } from '../src/lite-api/snapshot';
+export { VectorValue } from '../src/lite-api/vector_value';
+export { WriteBatch, writeBatch } from '../src/lite-api/write_batch';
+export { TransactionOptions } from '../src/lite-api/transaction_options';
+export { Transaction, runTransaction } from '../src/lite-api/transaction';
+export { setLogLevel, LogLevelString as LogLevel } from '../src/util/log';
+export { Bytes } from '../src/lite-api/bytes';
+export { GeoPoint } from '../src/lite-api/geo_point';
+export { Timestamp } from '../src/lite-api/timestamp';
+export { FirestoreErrorCode, FirestoreError } from '../src/util/error';
diff --git a/frontend-old/node_modules/@firebase/firestore/dist/firestore/lite/register.d.ts b/frontend-old/node_modules/@firebase/firestore/dist/firestore/lite/register.d.ts
new file mode 100644
index 0000000..21b4ab3
--- /dev/null
+++ b/frontend-old/node_modules/@firebase/firestore/dist/firestore/lite/register.d.ts
@@ -0,0 +1,23 @@
+/**
+ * @license
+ * Copyright 2020 Google LLC
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { Firestore } from '../src/lite-api/database';
+declare module '@firebase/component' {
+ interface NameServiceMapping {
+ 'firestore/lite': Firestore;
+ }
+}
+export declare function registerFirestore(): void;