What is the Repeater.Data equivalent function for a Table?

Currently we can dynamically set the dataset for a repeater by using below. What is the equivalent property for a $w.Table?

e.g
.then( (results) => {
$w.Repeater.data = results.items;
} )

.rows

Thank you Giri. This worked.