google-wallet
Version:
Google wallet library for Node.js
18 lines (17 loc) • 692 B
TypeScript
import { CardRowOneItem } from "./CardRowOneItem.js";
import { CardRowThreeItems } from "./CardRowThreeItems.js";
import { CardRowTwoItems } from "./CardRowTwoItems.js";
export type CardRowTemplateInfo = {
/**
* Template for a row containing one item. Exactly one of "oneItem", "twoItems", "threeItems" must be set.
*/
oneItem?: CardRowOneItem;
/**
* Template for a row containing two items. Exactly one of "oneItem", "twoItems", "threeItems" must be set.
*/
twoItems?: CardRowTwoItems;
/**
* Template for a row containing three items. Exactly one of "oneItem", "twoItems", "threeItems" must be set.
*/
threeItems?: CardRowThreeItems;
};