google-wallet
Version:
Google wallet library for Node.js
18 lines (17 loc) • 536 B
TypeScript
import { LocalizedString } from "./LocalizedString.js";
export type ImageUri = {
/**
* The location of the image. URIs must have a scheme.
*/
uri?: string;
/**
* Additional information about the image, which is unused and retained only for backward compatibility.
* @deprecated
*/
description?: string;
/**
* Translated strings for the description, which are unused and retained only for backward compatibility.
* @deprecated
*/
localizedDescription?: LocalizedString;
};