Skip to content

Commit 3e10d2c

Browse files
committed
Docs devsite generation.
1 parent 6c773c5 commit 3e10d2c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs-devsite/firestore_.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2209,7 +2209,7 @@ Returns a new map where every key is prefixed with the outer key appended to a d
22092209

22102210
```typescript
22112211
export declare type AddPrefixToKeys<Prefix extends string, T extends Record<string, unknown>> = {
2212-
[K in keyof T & string as `${Prefix}.${K}`]+?: T[K];
2212+
[K in keyof T & string as `${Prefix}.${K}`]+?: string extends K ? any : T[K];
22132213
};
22142214
```
22152215

docs-devsite/firestore_lite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1424,7 +1424,7 @@ Returns a new map where every key is prefixed with the outer key appended to a d
14241424

14251425
```typescript
14261426
export declare type AddPrefixToKeys<Prefix extends string, T extends Record<string, unknown>> = {
1427-
[K in keyof T & string as `${Prefix}.${K}`]+?: T[K];
1427+
[K in keyof T & string as `${Prefix}.${K}`]+?: string extends K ? any : T[K];
14281428
};
14291429
```
14301430

0 commit comments

Comments
 (0)