@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) • 579 B
text/typescript
/**
* Information about the content to embed in an iFrame.
*/
interface ITabInfo {
/**
* The URL to open in an iFrame.
*/
contentUrl: string;
/**
* Optional. Website URL to the content, allowing users to open this content in the browser (if they prefer).
*/
websiteUrl?: string;
/**
* Name for the content. This will be displayed as the title of the window hosting the iFrame.
*/
name: string;
/**
* Unique entity id for this content (e.g., random UUID).
*/
entityId: string;
}
export type { ITabInfo };