Created
September 6, 2023 07:06
-
-
Save JonCatmull/ee65ec870d70c4a3b2c35ecd85aad8d4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Gets the document type from a Firestore DocumentReference | |
*/ | |
export type DocumentReferenceType<T> = T extends DocumentReference<infer U> ? U : never; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment