15 lines
No EOL
407 B
TypeScript
15 lines
No EOL
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
|