about summary refs log tree commit diff
path: root/modules/expo-bluesky-swiss-army/src/Referrer/index.ts
blob: ac594402b88e7d4fb6fc36457c6cc3d0cfed56f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import {NotImplementedError} from '../NotImplemented'
import {GooglePlayReferrerInfo, ReferrerInfo} from './types'

export function getGooglePlayReferrerInfoAsync(): Promise<GooglePlayReferrerInfo> {
  throw new NotImplementedError()
}

export function getReferrerInfo(): ReferrerInfo | null {
  throw new NotImplementedError()
}