We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58310cd commit 66bc1b5Copy full SHA for 66bc1b5
blog/2025-02-14-typescript-sdk-release.md
@@ -140,7 +140,7 @@ We have fixed these issues by making the `$type` property in the generated inter
140
141
```typescript
142
export interface Main {
143
- $type?: $Type<'app.bsky.embed.video', 'main'>
+ $type?: 'app.bsky.embed.video'
144
video: BlobRef
145
captions?: Caption[]
146
alt?: string
@@ -152,7 +152,7 @@ Notice how the `$type` property is defined as optional (`?:`) here. This is due
152
153
154
155
- $type?: $Type<'app.bsky.embed.recordWithMedia', 'main'>
+ $type?: 'app.bsky.embed.recordWithMedia'
156
record: AppBskyEmbedRecord.Main // Also used in post's `embed` property
157
media: /* omitted */
158
}
0 commit comments