google-wallet
Version:
Google wallet library for Node.js
12 lines (11 loc) • 366 B
TypeScript
import { TemplateItem } from "./TemplateItem.js";
export type CardRowTwoItems = {
/**
* The item to be displayed at the start of the row. This item will be aligned to the left.
*/
startItem?: TemplateItem;
/**
* The item to be displayed at the end of the row. This item will be aligned to the right.
*/
endItem?: TemplateItem;
};