UNPKG

@microsoft/teams.cards

Version:

<p> <a href="https://www.npmjs.com/package/@microsoft/teams.cards" target="_blank"> <img src="https://img.shields.io/npm/v/@microsoft/teams.cards" /> </a> <a href="https://www.npmjs.com/package/@microsoft/teams.cards?activeTab=code" ta

24 lines (22 loc) 481 B
'use strict'; class StackLayout { type; /** * Controls for which card width the layout should be used. */ targetWidth; constructor(options = {}) { this.type = "Layout.Stack"; Object.assign(this, options); } static from(options) { return new StackLayout(options); } withTargetWidth(value) { this.targetWidth = value; return this; } } exports.StackLayout = StackLayout; //# sourceMappingURL=stack.js.map //# sourceMappingURL=stack.js.map