shelving 1.46.0 → 1.46.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/db/Database.d.ts +1 -1
- package/package.json +1 -1
package/db/Database.d.ts
CHANGED
|
@@ -142,7 +142,7 @@ export declare class DatabaseDocument<T extends Data = Data> implements Observab
|
|
|
142
142
|
* @return Document's data (possibly promised).
|
|
143
143
|
* @throws RequiredError if the document's result was undefined.
|
|
144
144
|
*/
|
|
145
|
-
get data(): T | PromiseLike<T
|
|
145
|
+
get data(): DocumentData<T> | PromiseLike<DocumentData<T>>;
|
|
146
146
|
/**
|
|
147
147
|
* Subscribe to the result of this document (indefinitely).
|
|
148
148
|
* - `next()` is called once with the initial result, and again any time the result changes.
|