Type Alias: TableInfo
TableInfo =
StandardTableInfo|SmartTableInfo
Defined in: src/modules/table.ts:52
Discriminated union for table detection results.
Remarks​
Use the kind discriminant to narrow between standard and SmartTable wrappers.
Example​
const info: TableInfo = await detectTableType(page, 'myTable');
if (info.kind === 'smart') {
logger.info(info.smartTableId);
}