Skip to content

Commit d693bfd

Browse files
committed
Update devsite docs
1 parent fcc03ad commit d693bfd

File tree

8 files changed

+23
-23
lines changed

8 files changed

+23
-23
lines changed

docs-devsite/analytics.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@ Whether a particular consent type has been granted or denied.
990990
<b>Signature:</b>
991991

992992
```typescript
993-
export declare type ConsentStatusString = 'granted' | 'denied';
993+
export type ConsentStatusString = 'granted' | 'denied';
994994
```
995995

996996
## Currency
@@ -1000,7 +1000,7 @@ Standard Google Analytics currency type.
10001000
<b>Signature:</b>
10011001

10021002
```typescript
1003-
export declare type Currency = string | number;
1003+
export type Currency = string | number;
10041004
```
10051005

10061006
## CustomEventName
@@ -1010,7 +1010,7 @@ Any custom event name string not in the standard list of recommended event names
10101010
<b>Signature:</b>
10111011

10121012
```typescript
1013-
export declare type CustomEventName<T> = T extends EventNameString ? never : T;
1013+
export type CustomEventName<T> = T extends EventNameString ? never : T;
10141014
```
10151015

10161016
## EventNameString
@@ -1020,5 +1020,5 @@ Type for standard Google Analytics event names. `logEvent` also accepts any cust
10201020
<b>Signature:</b>
10211021

10221022
```typescript
1023-
export declare type EventNameString = 'add_payment_info' | 'add_shipping_info' | 'add_to_cart' | 'add_to_wishlist' | 'begin_checkout' | 'checkout_progress' | 'exception' | 'generate_lead' | 'login' | 'page_view' | 'purchase' | 'refund' | 'remove_from_cart' | 'screen_view' | 'search' | 'select_content' | 'select_item' | 'select_promotion' | 'set_checkout_option' | 'share' | 'sign_up' | 'timing_complete' | 'view_cart' | 'view_item' | 'view_item_list' | 'view_promotion' | 'view_search_results';
1023+
export type EventNameString = 'add_payment_info' | 'add_shipping_info' | 'add_to_cart' | 'add_to_wishlist' | 'begin_checkout' | 'checkout_progress' | 'exception' | 'generate_lead' | 'login' | 'page_view' | 'purchase' | 'refund' | 'remove_from_cart' | 'screen_view' | 'search' | 'select_content' | 'select_item' | 'select_promotion' | 'set_checkout_option' | 'share' | 'sign_up' | 'timing_complete' | 'view_cart' | 'view_item' | 'view_item_list' | 'view_promotion' | 'view_search_results';
10241024
```

docs-devsite/app-check.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,5 +197,5 @@ A listener that is called whenever the App Check token changes.
197197
<b>Signature:</b>
198198

199199
```typescript
200-
export declare type AppCheckTokenListener = (token: AppCheckTokenResult) => void;
200+
export type AppCheckTokenListener = (token: AppCheckTokenResult) => void;
201201
```

docs-devsite/auth.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2114,7 +2114,7 @@ Map of OAuth Custom Parameters.
21142114
<b>Signature:</b>
21152115

21162116
```typescript
2117-
export declare type CustomParameters = Record<string, string>;
2117+
export type CustomParameters = Record<string, string>;
21182118
```
21192119

21202120
## NextOrObserver
@@ -2124,7 +2124,7 @@ Type definition for an event callback.
21242124
<b>Signature:</b>
21252125

21262126
```typescript
2127-
export declare type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
2127+
export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
21282128
```
21292129

21302130
## PhoneInfoOptions
@@ -2136,7 +2136,7 @@ The information that's required depends on whether you are doing single-factor s
21362136
<b>Signature:</b>
21372137

21382138
```typescript
2139-
export declare type PhoneInfoOptions = PhoneSingleFactorInfoOptions | PhoneMultiFactorEnrollInfoOptions | PhoneMultiFactorSignInInfoOptions;
2139+
export type PhoneInfoOptions = PhoneSingleFactorInfoOptions | PhoneMultiFactorEnrollInfoOptions | PhoneMultiFactorSignInInfoOptions;
21402140
```
21412141

21422142
## UserProfile
@@ -2146,5 +2146,5 @@ User profile used in [AdditionalUserInfo](./auth.additionaluserinfo.md#additiona
21462146
<b>Signature:</b>
21472147

21482148
```typescript
2149-
export declare type UserProfile = Record<string, unknown>;
2149+
export type UserProfile = Record<string, unknown>;
21502150
```

docs-devsite/functions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Possible values: - 'cancelled': The operation was cancelled (typically by the ca
147147
<b>Signature:</b>
148148

149149
```typescript
150-
export declare type FunctionsErrorCode = `functions/${FunctionsErrorCodeCore}`;
150+
export type FunctionsErrorCode = `functions/${FunctionsErrorCodeCore}`;
151151
```
152152

153153
## FunctionsErrorCodeCore
@@ -157,7 +157,7 @@ Functions error code string appended after "functions/" product prefix. See [Fun
157157
<b>Signature:</b>
158158

159159
```typescript
160-
export declare type FunctionsErrorCodeCore = 'ok' | 'cancelled' | 'unknown' | 'invalid-argument' | 'deadline-exceeded' | 'not-found' | 'already-exists' | 'permission-denied' | 'resource-exhausted' | 'failed-precondition' | 'aborted' | 'out-of-range' | 'unimplemented' | 'internal' | 'unavailable' | 'data-loss' | 'unauthenticated';
160+
export type FunctionsErrorCodeCore = 'ok' | 'cancelled' | 'unknown' | 'invalid-argument' | 'deadline-exceeded' | 'not-found' | 'already-exists' | 'permission-denied' | 'resource-exhausted' | 'failed-precondition' | 'aborted' | 'out-of-range' | 'unimplemented' | 'internal' | 'unavailable' | 'data-loss' | 'unauthenticated';
161161
```
162162

163163
## HttpsCallable
@@ -167,5 +167,5 @@ A reference to a "callable" HTTP trigger in Google Cloud Functions.
167167
<b>Signature:</b>
168168

169169
```typescript
170-
export declare type HttpsCallable<RequestData = unknown, ResponseData = unknown> = (data?: RequestData | null) => Promise<HttpsCallableResult<ResponseData>>;
170+
export type HttpsCallable<RequestData = unknown, ResponseData = unknown> = (data?: RequestData | null) => Promise<HttpsCallableResult<ResponseData>>;
171171
```

docs-devsite/installations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ An user defined callback function that gets called when Installations ID changes
152152
<b>Signature:</b>
153153

154154
```typescript
155-
export declare type IdChangeCallbackFn = (installationId: string) => void;
155+
export type IdChangeCallbackFn = (installationId: string) => void;
156156
```
157157

158158
## IdChangeUnsubscribeFn
@@ -162,5 +162,5 @@ Unsubscribe a callback function previously added via [IdChangeCallbackFn](./inst
162162
<b>Signature:</b>
163163

164164
```typescript
165-
export declare type IdChangeUnsubscribeFn = () => void;
165+
export type IdChangeUnsubscribeFn = () => void;
166166
```

docs-devsite/remote-config.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ Summarizes the outcome of the last attempt to fetch config from the Firebase Rem
325325
<b>Signature:</b>
326326

327327
```typescript
328-
export declare type FetchStatus = 'no-fetch-yet' | 'success' | 'failure' | 'throttle';
328+
export type FetchStatus = 'no-fetch-yet' | 'success' | 'failure' | 'throttle';
329329
```
330330

331331
## LogLevel
@@ -335,7 +335,7 @@ Defines levels of Remote Config logging.
335335
<b>Signature:</b>
336336

337337
```typescript
338-
export declare type LogLevel = 'debug' | 'error' | 'silent';
338+
export type LogLevel = 'debug' | 'error' | 'silent';
339339
```
340340

341341
## ValueSource
@@ -347,5 +347,5 @@ Indicates the source of a value.
347347
<b>Signature:</b>
348348

349349
```typescript
350-
export declare type ValueSource = 'static' | 'default' | 'remote';
350+
export type ValueSource = 'static' | 'default' | 'remote';
351351
```

docs-devsite/storage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ An enumeration of the possible string formats for upload.
493493
<b>Signature:</b>
494494

495495
```typescript
496-
export declare type StringFormat = (typeof StringFormat)[keyof typeof StringFormat];
496+
export type StringFormat = (typeof StringFormat)[keyof typeof StringFormat];
497497
```
498498

499499
## TaskEvent
@@ -503,7 +503,7 @@ An event that is triggered on a task.
503503
<b>Signature:</b>
504504

505505
```typescript
506-
export declare type TaskEvent = 'state_changed';
506+
export type TaskEvent = 'state_changed';
507507
```
508508

509509
## TaskState
@@ -513,7 +513,7 @@ Represents the current state of a running upload.
513513
<b>Signature:</b>
514514

515515
```typescript
516-
export declare type TaskState = 'running' | 'paused' | 'success' | 'canceled' | 'error';
516+
export type TaskState = 'running' | 'paused' | 'success' | 'canceled' | 'error';
517517
```
518518

519519
## StorageErrorCode

docs-devsite/vertexai.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Content part - includes text, image/video, or function call/response part types.
184184
<b>Signature:</b>
185185

186186
```typescript
187-
export declare type Part = TextPart | InlineDataPart | FunctionCallPart | FunctionResponsePart | FileDataPart;
187+
export type Part = TextPart | InlineDataPart | FunctionCallPart | FunctionResponsePart | FileDataPart;
188188
```
189189

190190
## Role
@@ -194,7 +194,7 @@ Role is the producer of the content.
194194
<b>Signature:</b>
195195

196196
```typescript
197-
export declare type Role = (typeof POSSIBLE_ROLES)[number];
197+
export type Role = (typeof POSSIBLE_ROLES)[number];
198198
```
199199

200200
## Tool
@@ -214,7 +214,7 @@ A type that includes all specific Schema types.
214214
<b>Signature:</b>
215215

216216
```typescript
217-
export declare type TypedSchema = IntegerSchema | NumberSchema | StringSchema | BooleanSchema | ObjectSchema | ArraySchema;
217+
export type TypedSchema = IntegerSchema | NumberSchema | StringSchema | BooleanSchema | ObjectSchema | ArraySchema;
218218
```
219219

220220
## BlockReason

0 commit comments

Comments
 (0)