@returns {Schemas}
({
includedFilter = this.includedFilter
} = {})
| 122 | |
| 123 | /** @returns {Schemas} */ |
| 124 | getSchemas({ |
| 125 | includedFilter = this.includedFilter |
| 126 | } = {}) { |
| 127 | const schemas = new Schemas({ |
| 128 | framework: this, |
| 129 | includedFilter, |
| 130 | sourcePath: this.sourcePath, |
| 131 | log: this.log |
| 132 | }); |
| 133 | schemas.load(); |
| 134 | return schemas; |
| 135 | } |
| 136 | |
| 137 | /** @returns {Translate} */ |
| 138 | getTranslate({ |
no test coverage detected