botframework-schema
Version:
Activity schema for the Microsoft Bot Framework.
15 lines • 407 B
TypeScript
import type { BaseCardComponent } from './baseCardComponent';
/**
* Adaptive Card Extension Text component. Represents a text block rendered in the card view.
*/
export interface CardTextComponent extends BaseCardComponent {
/**
* Unique component name.
*/
componentName: 'text';
/**
* Text to display.
*/
text: string;
}
//# sourceMappingURL=cardTextComponent.d.ts.map