Skip to content

Interface: CellAttributes

@termwright/driver


@termwright/driver / CellAttributes

Defined in: driver/src/api.ts:448

@termwright/driver — PTY + VT sessions, locators, actions and waits.

The normative public API lives in api.ts; this module is the only entry point and re-exports the types from there together with their runtime implementations.

import { launchTerminal } from '@termwright/driver';
const terminal = await launchTerminal({ command: ['node', 'app.js'] });
await terminal.waitForText('Ready');
await terminal.getByRole('button', { name: 'Approve' }).activate();
await terminal.close();

readonly bold: boolean

Defined in: driver/src/api.ts:449


readonly dim: boolean

Defined in: driver/src/api.ts:450


readonly inverse: boolean

Defined in: driver/src/api.ts:453


readonly italic: boolean

Defined in: driver/src/api.ts:451


readonly strikethrough: boolean

Defined in: driver/src/api.ts:454


readonly underline: boolean

Defined in: driver/src/api.ts:452