summaryrefslogtreecommitdiff
path: root/frontend-old/node_modules/@firebase/firestore/dist/firestore/lite
diff options
context:
space:
mode:
authoraltaf-creator <dev@altafcreator.com>2025-11-16 19:08:29 +0800
committeraltaf-creator <dev@altafcreator.com>2025-11-16 19:08:29 +0800
commit434aa8343fdcbb4d5002f934979913c099489bee (patch)
tree55bab4ec5a6151be57797d34f61faf5ea744471b /frontend-old/node_modules/@firebase/firestore/dist/firestore/lite
parent893c388d4e99442a36005e5971a87730623f946e (diff)
sdk, del
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, 0 insertions, 52 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
deleted file mode 100644
index 86dd215..0000000
--- a/frontend-old/node_modules/@firebase/firestore/dist/firestore/lite/index.d.ts
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * 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
deleted file mode 100644
index 21b4ab3..0000000
--- a/frontend-old/node_modules/@firebase/firestore/dist/firestore/lite/register.d.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- * @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;