@magnetarjs/types
Advanced tools
Comparing version 0.7.2 to 0.7.3
{ | ||
"name": "@magnetarjs/types", | ||
"version": "0.7.2", | ||
"version": "0.7.3", | ||
"sideEffects": false, | ||
@@ -5,0 +5,0 @@ "description": "Magnetar shared types", |
@@ -82,7 +82,7 @@ import { | ||
direction?: 'asc' | 'desc' | ||
) => CollectionInstance<DocDataType> | ||
) => CollectionInstance<DocDataType, GranularTypes> | ||
/** | ||
* Chainable filter. Returns {@link CollectionInstance} with filter applied. | ||
*/ | ||
limit: (limitCount: number) => CollectionInstance<DocDataType> | ||
limit: (limitCount: number) => CollectionInstance<DocDataType, GranularTypes> | ||
/** | ||
@@ -95,8 +95,8 @@ * Chainable filter. Returns {@link CollectionInstance} with filter applied. | ||
value: any | ||
) => CollectionInstance<DocDataType> | ||
) => CollectionInstance<DocDataType, GranularTypes> | ||
/** | ||
* Chainable filter. Returns {@link CollectionInstance} with filter applied. | ||
*/ | ||
startAfter(docSnapshot: Record<string, any>): CollectionInstance<DocDataType> | ||
startAfter(...fieldValues: unknown[]): CollectionInstance<DocDataType> | ||
startAfter(docSnapshot: Record<string, any>): CollectionInstance<DocDataType, GranularTypes> | ||
startAfter(...fieldValues: unknown[]): CollectionInstance<DocDataType, GranularTypes> | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
41681