(path: string, schema: SpaceTableSchema)
| 253 | } |
| 254 | |
| 255 | public createFrame (path: string, schema: SpaceTableSchema) { |
| 256 | return this.adapterForPath(path).createFrame(path, schema).then(f => |
| 257 | this.superstate.dispatchEvent("frameStateUpdated", {path: this.spaceInfoForPath(path).path, schemaId: schema.id})) |
| 258 | } |
| 259 | |
| 260 | public deleteFrame (path: string, name: string) { |
| 261 | return this.adapterForPath(path).deleteFrame(path, name); |
nothing calls this directly
no test coverage detected