9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
import { AppleIAPProductId } from './AppleIAPProductId'
|
|
|
|
export type AppleIAPReceipt = {
|
|
productId: AppleIAPProductId
|
|
transactionDate: string
|
|
transactionId: string
|
|
transactionReceipt: string
|
|
}
|