Unvendor the api and switch to @atproto/api

This commit is contained in:
Paul Frazee
2022-12-22 09:17:07 -06:00
parent aee205b0ab
commit 61511d5161
109 changed files with 140 additions and 13781 deletions
+2 -3
View File
@@ -1,9 +1,8 @@
import {makeAutoObservable} from 'mobx'
import * as GetAssertions from '../../third-party/api/src/client/types/app/bsky/graph/getAssertions'
import {AppBskyGraphGetAssertions as GetAssertions} from '@atproto/api'
import {RootStoreModel} from './root-store'
type ResponseAssertion = GetAssertions.OutputSchema['assertions'][number]
export type Assertion = ResponseAssertion & {
export type Assertion = GetAssertions.Assertion & {
_reactKey: string
}