diff options
| author | altaf-creator <dev@altafcreator.com> | 2025-11-16 19:08:29 +0800 |
|---|---|---|
| committer | altaf-creator <dev@altafcreator.com> | 2025-11-16 19:08:29 +0800 |
| commit | 434aa8343fdcbb4d5002f934979913c099489bee (patch) | |
| tree | 55bab4ec5a6151be57797d34f61faf5ea744471b /frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation | |
| parent | 893c388d4e99442a36005e5971a87730623f946e (diff) | |
sdk, del
Diffstat (limited to 'frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation')
5 files changed, 0 insertions, 168 deletions
diff --git a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/AckUserWrite.d.ts b/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/AckUserWrite.d.ts deleted file mode 100644 index a0cef5f..0000000 --- a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/AckUserWrite.d.ts +++ /dev/null @@ -1,36 +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 { ImmutableTree } from '../util/ImmutableTree'; -import { Path } from '../util/Path'; -import { Operation, OperationType } from './Operation'; -export declare class AckUserWrite implements Operation { - /** @inheritDoc */ path: Path; - /** @inheritDoc */ affectedTree: ImmutableTree<boolean>; - /** @inheritDoc */ revert: boolean; - /** @inheritDoc */ - type: OperationType; - /** @inheritDoc */ - source: import("./Operation").OperationSource; - /** - * @param affectedTree - A tree containing true for each affected path. Affected paths can't overlap. - */ - constructor( - /** @inheritDoc */ path: Path, - /** @inheritDoc */ affectedTree: ImmutableTree<boolean>, - /** @inheritDoc */ revert: boolean); - operationForChild(childName: string): AckUserWrite; -} diff --git a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/ListenComplete.d.ts b/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/ListenComplete.d.ts deleted file mode 100644 index 87157a2..0000000 --- a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/ListenComplete.d.ts +++ /dev/null @@ -1,26 +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 { Path } from '../util/Path'; -import { Operation, OperationSource, OperationType } from './Operation'; -export declare class ListenComplete implements Operation { - source: OperationSource; - path: Path; - /** @inheritDoc */ - type: OperationType; - constructor(source: OperationSource, path: Path); - operationForChild(childName: string): ListenComplete; -} diff --git a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/Merge.d.ts b/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/Merge.d.ts deleted file mode 100644 index 3fbfbef..0000000 --- a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/Merge.d.ts +++ /dev/null @@ -1,33 +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 { Node } from '../snap/Node'; -import { ImmutableTree } from '../util/ImmutableTree'; -import { Path } from '../util/Path'; -import { Operation, OperationSource, OperationType } from './Operation'; -export declare class Merge implements Operation { - /** @inheritDoc */ source: OperationSource; - /** @inheritDoc */ path: Path; - /** @inheritDoc */ children: ImmutableTree<Node>; - /** @inheritDoc */ - type: OperationType; - constructor( - /** @inheritDoc */ source: OperationSource, - /** @inheritDoc */ path: Path, - /** @inheritDoc */ children: ImmutableTree<Node>); - operationForChild(childName: string): Operation; - toString(): string; -} diff --git a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/Operation.d.ts b/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/Operation.d.ts deleted file mode 100644 index 4e0bc44..0000000 --- a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/Operation.d.ts +++ /dev/null @@ -1,45 +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 { Path } from '../util/Path'; -/** - * - * @enum - */ -export declare enum OperationType { - OVERWRITE = 0, - MERGE = 1, - ACK_USER_WRITE = 2, - LISTEN_COMPLETE = 3 -} -/** - * @interface - */ -export interface Operation { - source: OperationSource; - type: OperationType; - path: Path; - operationForChild(childName: string): Operation | null; -} -export interface OperationSource { - fromUser: boolean; - fromServer: boolean; - queryId: string | null; - tagged: boolean; -} -export declare function newOperationSourceUser(): OperationSource; -export declare function newOperationSourceServer(): OperationSource; -export declare function newOperationSourceServerTaggedQuery(queryId: string): OperationSource; diff --git a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/Overwrite.d.ts b/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/Overwrite.d.ts deleted file mode 100644 index 2494845..0000000 --- a/frontend-old/node_modules/@firebase/database/dist/node-esm/src/core/operation/Overwrite.d.ts +++ /dev/null @@ -1,28 +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 { Node } from '../snap/Node'; -import { Path } from '../util/Path'; -import { Operation, OperationSource, OperationType } from './Operation'; -export declare class Overwrite implements Operation { - source: OperationSource; - path: Path; - snap: Node; - /** @inheritDoc */ - type: OperationType; - constructor(source: OperationSource, path: Path, snap: Node); - operationForChild(childName: string): Overwrite; -} |
