* Global defaults type override options for all database bindings. This type remove make some optional values required. * @internal
| 39 | * @internal |
| 40 | */ |
| 41 | interface _DatabaseRefOptionsWithDefaults extends _DatabaseRefOptions<unknown> { |
| 42 | /** |
| 43 | * @defaultValue `false` |
| 44 | */ |
| 45 | reset: ResetOption |
| 46 | /** |
| 47 | * @defaultValue `true` |
| 48 | */ |
| 49 | wait: boolean |
| 50 | |
| 51 | serialize: DatabaseSnapshotSerializer |
| 52 | } |
| 53 | |
| 54 | const DEFAULT_OPTIONS: _DatabaseRefOptionsWithDefaults = { |
| 55 | reset: false, |
nothing calls this directly
no outgoing calls
no test coverage detected