MCPcopy
hub / github.com/vuejs/vuefire / _DatabaseRefOptionsWithDefaults

Interface _DatabaseRefOptionsWithDefaults

src/database/bind.ts:41–52  ·  view source on GitHub ↗

* Global defaults type override options for all database bindings. This type remove make some optional values required. * @internal

Source from the content-addressed store, hash-verified

39 * @internal
40 */
41interface _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
54const DEFAULT_OPTIONS: _DatabaseRefOptionsWithDefaults = {
55 reset: false,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected