(path: string, schema: string)
| 245 | return this.adapterForPath(path).framesForSpace(path); |
| 246 | } |
| 247 | public readFrame (path: string, schema: string) { |
| 248 | return this.adapterForPath(path).readFrame(path, schema); |
| 249 | } |
| 250 | |
| 251 | public readAllFrames (path: string) { |
| 252 | return this.adapterForPath(path).readAllFrames(path); |
nothing calls this directly
no test coverage detected