Clarify docs

Co-authored-by: Matthieu Sieben <matthieusieben@users.noreply.github.com>
This commit is contained in:
Eric Bailey
2025-01-08 09:27:30 -06:00
parent 18e329c2af
commit c4810cba64
+2 -1
View File
@@ -13,7 +13,8 @@ export * as starterPack from '#/types/atproto/starterPack'
* ```ts
* import * as atp from '#/types/atproto'
*
* if (atp.dangerousIsType<AppBskyFeedPost.Record>(node.post.record, AppBskyFeedPost.isRecord)) {
* if (atp.dangerousIsType<AppBskyFeedPost.Record>(item, AppBskyFeedPost.isRecord)) {
* // `item` has type `$Typed<AppBskyFeedPost.Record>` here
* }
* ```
*/