summaryrefslogtreecommitdiff
path: root/frontend-old/node_modules/@firebase/installations-types
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/installations-types
parent893c388d4e99442a36005e5971a87730623f946e (diff)
sdk, del
Diffstat (limited to 'frontend-old/node_modules/@firebase/installations-types')
-rw-r--r--frontend-old/node_modules/@firebase/installations-types/index.d.ts54
-rw-r--r--frontend-old/node_modules/@firebase/installations-types/package.json28
2 files changed, 0 insertions, 82 deletions
diff --git a/frontend-old/node_modules/@firebase/installations-types/index.d.ts b/frontend-old/node_modules/@firebase/installations-types/index.d.ts
deleted file mode 100644
index 77ab699..0000000
--- a/frontend-old/node_modules/@firebase/installations-types/index.d.ts
+++ /dev/null
@@ -1,54 +0,0 @@
-/**
- * @license
- * Copyright 2019 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 { FirebaseApp } from '@firebase/app-types';
-
-export interface FirebaseInstallations {
- /**
- * Creates a Firebase Installation if there isn't one for the app and
- * returns the Installation ID.
- *
- * @return Firebase Installation ID
- */
- getId(): Promise<string>;
-
- /**
- * Returns an Authentication Token for the current Firebase Installation.
- *
- * @return Firebase Installation Authentication Token
- */
- getToken(forceRefresh?: boolean): Promise<string>;
-
- /**
- * Deletes the Firebase Installation and all associated data.
- */
- delete(): Promise<void>;
-
- /**
- * Sets a new callback that will get called when Installation ID changes.
- * Returns an unsubscribe function that will remove the callback when called.
- */
- onIdChange(callback: (installationId: string) => void): () => void;
-}
-
-export type FirebaseInstallationsName = 'installations';
-
-declare module '@firebase/component' {
- interface NameServiceMapping {
- 'installations-compat': FirebaseInstallations;
- }
-}
diff --git a/frontend-old/node_modules/@firebase/installations-types/package.json b/frontend-old/node_modules/@firebase/installations-types/package.json
deleted file mode 100644
index fafe3b6..0000000
--- a/frontend-old/node_modules/@firebase/installations-types/package.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "name": "@firebase/installations-types",
- "version": "0.5.3",
- "description": "@firebase/installations Types",
- "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
- "license": "Apache-2.0",
- "scripts": {
- "test": "tsc",
- "test:ci": "node ../../scripts/run_tests_in_ci.js"
- },
- "files": [
- "index.d.ts"
- ],
- "peerDependencies": {
- "@firebase/app-types": "0.x"
- },
- "repository": {
- "directory": "packages/installations-types",
- "type": "git",
- "url": "git+https://github.com/firebase/firebase-js-sdk.git"
- },
- "bugs": {
- "url": "https://github.com/firebase/firebase-js-sdk/issues"
- },
- "devDependencies": {
- "typescript": "5.5.4"
- }
-}