(path: string, table: SpaceTable, force?: boolean)
| 223 | return f}); |
| 224 | } |
| 225 | public saveTable (path: string, table: SpaceTable, force?: boolean) { |
| 226 | return this.adapterForPath(path).saveTable(path, table, force) |
| 227 | } |
| 228 | public deleteTable (path: string, name: string) { |
| 229 | |
| 230 | return this.adapterForPath(path).deleteTable(path, name).then(f => { |
nothing calls this directly
no test coverage detected