diff options
Diffstat (limited to 'src/state/models/votes-view.ts')
-rw-r--r-- | src/state/models/votes-view.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/state/models/votes-view.ts b/src/state/models/votes-view.ts index 64da6b227..c92d8ae22 100644 --- a/src/state/models/votes-view.ts +++ b/src/state/models/votes-view.ts @@ -1,7 +1,9 @@ import {makeAutoObservable, runInAction} from 'mobx' import {AtUri} from '../../third-party/uri' -import * as GetVotes from '../../third-party/api/src/client/types/app/bsky/feed/getVotes' -import * as ActorRef from '../../third-party/api/src/client/types/app/bsky/actor/ref' +import { + AppBskyFeedGetVotes as GetVotes, + AppBskyActorRef as ActorRef, +} from '@atproto/api' import {RootStoreModel} from './root-store' export class VotesViewItemModel implements GetVotes.Vote { |