File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -214,8 +214,12 @@ export { DocumentKey as _DocumentKey } from './model/document_key';
214
214
export { debugAssert as _debugAssert } from './util/assert' ;
215
215
export { FieldPath as _FieldPath } from './model/path' ;
216
216
export type { ResourcePath as _ResourcePath } from './model/path' ;
217
- export type { ByteString as _ByteString } from './util/byte_string' ;
217
+ export { ByteString as _ByteString } from './util/byte_string' ;
218
218
export { logWarn as _logWarn } from './util/log' ;
219
+ export type {
220
+ AuthTokenFactory ,
221
+ FirstPartyCredentialsSettings
222
+ } from './api/credentials' ;
219
223
export { EmptyAuthCredentialsProvider as _EmptyAuthCredentialsProvider } from './api/credentials' ;
220
224
export { EmptyAppCheckTokenProvider as _EmptyAppCheckTokenProvider } from './api/credentials' ;
221
225
export { TestingHooks as _TestingHooks } from './util/testing_hooks' ;
Original file line number Diff line number Diff line change @@ -37,8 +37,14 @@ import { Deferred } from '../util/promise';
37
37
// TODO(mikelehen): This should be split into multiple files and probably
38
38
// moved to an auth/ folder to match other platforms.
39
39
40
+ /**
41
+ * @internal
42
+ */
40
43
export type AuthTokenFactory = ( ) => string ;
41
44
45
+ /**
46
+ * @internal
47
+ */
42
48
export interface FirstPartyCredentialsSettings {
43
49
// These are external types. Prevent minification.
44
50
[ 'type' ] : 'firstParty' ;
You can’t perform that action at this time.
0 commit comments