UNPKG

google-wallet

Version:
18 lines (17 loc) 459 B
import { ImageUri } from "./ImageUri.js"; import { LocalizedString } from "./LocalizedString.js"; export type Image = { /** * Identifies what kind of resource this is. Value: the fixed string "walletobjects#image". * @deprecated */ kind?: string; /** * The URI for the image. */ sourceUri?: ImageUri; /** * Description of the image used for accessibility. */ contentDescription?: LocalizedString; };