[🏠 Inicio](../README.md)

## getTableSchema

### Description:

The getTableSchema method retrieves the schema (column definitions) of a specified table.

### Usage:

```javascript
const db = new ArletDb('path/to/database', 'myDatabase');
db.getTableSchema('users')
  .then(schema => console.log('Table schema:', schema))
  .catch(err => console.error('Error:', err));
```