Skip to content

Commit 28ab641

Browse files
committed
Update API reports
1 parent cd3f7e1 commit 28ab641

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

common/api-review/util.api.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,28 @@ export function errorPrefix(fnName: string, argName: string): string;
173173
// @public (undocumented)
174174
export type Executor<T> = (observer: Observer<T>) => void;
175175

176+
// @public
177+
export type ExperimentalKey = 'authTokenSyncURL' | 'authIdTokenMaxAge';
178+
176179
// Warning: (ae-missing-release-tag) "extractQuerystring" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
177180
//
178181
// @public
179182
export function extractQuerystring(url: string): string;
180183

184+
// @public
185+
export interface FirebaseDefaults {
186+
// (undocumented)
187+
[key: string]: unknown;
188+
// (undocumented)
189+
_authIdTokenMaxAge?: number;
190+
// (undocumented)
191+
_authTokenSyncURL?: string;
192+
// (undocumented)
193+
config?: Record<string, string>;
194+
// (undocumented)
195+
emulatorHosts?: Record<string, string>;
196+
}
197+
181198
// Warning: (ae-missing-release-tag) "FirebaseError" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
182199
//
183200
// @public (undocumented)
@@ -201,9 +218,6 @@ export const getDefaultAppConfig: () => Record<string, string> | undefined;
201218
// @public
202219
export const getDefaultEmulatorHost: (productName: string) => string | undefined;
203220

204-
// Warning: (ae-forgotten-export) The symbol "ExperimentalKey" needs to be exported by the entry point index.d.ts
205-
// Warning: (ae-forgotten-export) The symbol "FirebaseDefaults" needs to be exported by the entry point index.d.ts
206-
//
207221
// @public
208222
export const getExperimentalSetting: <T extends ExperimentalKey>(name: T) => FirebaseDefaults[`_${T}`];
209223

0 commit comments

Comments
 (0)