(path: string, schemaId: string, saveCommand: (prev: Command) => Command)
| 285 | this.superstate.reloadActions(this.spaceInfoForPath(path))); |
| 286 | } |
| 287 | public saveCommand (path: string, schemaId: string, saveCommand: (prev: Command) => Command) { |
| 288 | return this.adapterForPath(path).saveCommand(path, schemaId, saveCommand).then(f => |
| 289 | this.superstate.reloadActions(this.spaceInfoForPath(path))); |
| 290 | } |
| 291 | //basic item operations |
| 292 | public allPaths (type?: string[]) { |
| 293 | return this.spaceAdapters.flatMap(f => f.allPaths(type)); |
nothing calls this directly
no test coverage detected