(this: Channel<TablesDB>, id: string = "*")
| 50 | |
| 51 | // --- TABLESDB ROUTE --- |
| 52 | table(this: Channel<TablesDB>, id: string = "*"): Channel<Table> { |
| 53 | return this.next<Table>("tables", id); |
| 54 | } |
| 55 | |
| 56 | row(this: Channel<Table>, id: string = "*"): Channel<Row> { |
| 57 | return this.next<Row>("rows", id); |