about summary refs log tree commit diff
path: root/src/types/bsky/starterPack.ts
blob: 0064e16bc66789f69cf011493b045df9360883c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import {AppBskyGraphDefs} from '@atproto/api'

export const isBasicView = AppBskyGraphDefs.isStarterPackViewBasic
export const isView = AppBskyGraphDefs.isStarterPackView

/**
 * Matches any starter pack view exported by our SDK
 */
export type AnyStarterPackView =
  | AppBskyGraphDefs.StarterPackViewBasic
  | AppBskyGraphDefs.StarterPackView