(path: string, frame: MDBFrame)
| 266 | } |
| 267 | |
| 268 | public saveFrame (path: string, frame: MDBFrame) { |
| 269 | return this.adapterForPath(path).saveFrame(path, frame).then(f => |
| 270 | this.superstate.dispatchEvent("frameStateUpdated", {path: this.spaceInfoForPath(path).path, schemaId: frame.schema.id})) |
| 271 | } |
| 272 | |
| 273 | public commandsForSpace (path: string) { |
| 274 | return this.adapterForPath(path).commandsForSpace(path); |
nothing calls this directly
no test coverage detected