prettier-playwright-msteams-report
Version:
A modified version of the Playwright MS Teams Messager
26 lines (25 loc) • 533 B
TypeScript
export interface Table {
type: "Table";
columns: Column[];
rows: TableRow[];
}
export interface Column {
width: number;
}
export interface TableRow {
type: "TableRow";
cells: TableCell[];
}
export interface TableCell {
type: "TableCell";
items: TextBlock[];
style?: TableCellStyle;
}
export type TableCellStyle = "attention" | "good" | "warning" | "accent";
export interface TextBlock {
type: "TextBlock";
text: string;
wrap?: boolean;
isSubtle?: boolean;
weight?: "Bolder";
}