Skip to content

Commit 1de36ed

Browse files
authored
Fix onLog type in public API to be compatible with Typescript <3.x (#2789)
1 parent 2c8c940 commit 1de36ed

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packages/firebase/index.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @license
3-
* Copyright 2017 Google Inc.
3+
* Copyright 2017 Google LLC
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -131,7 +131,7 @@ declare namespace firebase {
131131
/**
132132
* The raw arguments passed to the log call.
133133
*/
134-
args: unknown[];
134+
args: any[];
135135
/**
136136
* A string indicating the name of the package that made the log call,
137137
* such as `@firebase/firestore`.
@@ -8091,10 +8091,10 @@ declare namespace firebase.firestore {
80918091
*/
80928092
isEqual(other: Timestamp): boolean;
80938093

8094-
/**
8095-
* Converts this object to a primitive string, which allows Timestamp objects to be compared
8096-
* using the `>`, `<=`, `>=` and `>` operators.
8097-
*/
8094+
/**
8095+
* Converts this object to a primitive string, which allows Timestamp objects to be compared
8096+
* using the `>`, `<=`, `>=` and `>` operators.
8097+
*/
80988098
valueOf(): string;
80998099
}
81008100

0 commit comments

Comments
 (0)