* AlaSQL table object. This is a lightweight implimentation * * @interface table
| 105 | * @interface table |
| 106 | */ |
| 107 | interface table { |
| 108 | /** |
| 109 | * The array of data stored in the table which can be queried |
| 110 | * |
| 111 | * @type {any[]} |
| 112 | * @memberof table |
| 113 | */ |
| 114 | data: unknown[]; |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * AlaSQL database dictionary |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…