summaryrefslogtreecommitdiff
path: root/frontend-old/node_modules/@firebase/storage/dist/src/platform/browser
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/storage/dist/src/platform/browser
parent893c388d4e99442a36005e5971a87730623f946e (diff)
sdk, del
Diffstat (limited to 'frontend-old/node_modules/@firebase/storage/dist/src/platform/browser')
-rw-r--r--frontend-old/node_modules/@firebase/storage/dist/src/platform/browser/base64.d.ts19
-rw-r--r--frontend-old/node_modules/@firebase/storage/dist/src/platform/browser/connection.d.ts55
2 files changed, 0 insertions, 74 deletions
diff --git a/frontend-old/node_modules/@firebase/storage/dist/src/platform/browser/base64.d.ts b/frontend-old/node_modules/@firebase/storage/dist/src/platform/browser/base64.d.ts
deleted file mode 100644
index 23c84f2..0000000
--- a/frontend-old/node_modules/@firebase/storage/dist/src/platform/browser/base64.d.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-/**
- * @license
- * Copyright 2021 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.
- */
-/** Converts a Base64 encoded string to a binary string. */
-export declare function decodeBase64(encoded: string): string;
-export declare function decodeUint8Array(data: Uint8Array): string;
diff --git a/frontend-old/node_modules/@firebase/storage/dist/src/platform/browser/connection.d.ts b/frontend-old/node_modules/@firebase/storage/dist/src/platform/browser/connection.d.ts
deleted file mode 100644
index 14415da..0000000
--- a/frontend-old/node_modules/@firebase/storage/dist/src/platform/browser/connection.d.ts
+++ /dev/null
@@ -1,55 +0,0 @@
-/**
- * @license
- * Copyright 2017 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 { Connection, ConnectionType, ErrorCode, Headers } from '../../implementation/connection';
-/**
- * Network layer for browsers. We use this instead of goog.net.XhrIo because
- * goog.net.XhrIo is hyuuuuge and doesn't work in React Native on Android.
- */
-declare abstract class XhrConnection<T extends ConnectionType> implements Connection<T> {
- protected xhr_: XMLHttpRequest;
- private errorCode_;
- private sendPromise_;
- protected sent_: boolean;
- constructor();
- abstract initXhr(): void;
- send(url: string, method: string, isUsingEmulator: boolean, body?: ArrayBufferView | Blob | string, headers?: Headers): Promise<void>;
- getErrorCode(): ErrorCode;
- getStatus(): number;
- getResponse(): T;
- getErrorText(): string;
- /** Aborts the request. */
- abort(): void;
- getResponseHeader(header: string): string | null;
- addUploadProgressListener(listener: (p1: ProgressEvent) => void): void;
- removeUploadProgressListener(listener: (p1: ProgressEvent) => void): void;
-}
-export declare class XhrTextConnection extends XhrConnection<string> {
- initXhr(): void;
-}
-export declare function newTextConnection(): Connection<string>;
-export declare class XhrBytesConnection extends XhrConnection<ArrayBuffer> {
- private data_?;
- initXhr(): void;
-}
-export declare function newBytesConnection(): Connection<ArrayBuffer>;
-export declare class XhrBlobConnection extends XhrConnection<Blob> {
- initXhr(): void;
-}
-export declare function newBlobConnection(): Connection<Blob>;
-export declare function newStreamConnection(): Connection<ReadableStream>;
-export declare function injectTestConnection(factory: (() => Connection<string>) | null): void;
-export {};