(bookId: string, authorIntent?: string)
| 23 | } |
| 24 | |
| 25 | async ensureControlDocuments(bookId: string, authorIntent?: string): Promise<void> { |
| 26 | const language = await this.resolveControlDocumentLanguage(bookId); |
| 27 | await this.ensureControlDocumentsAt(this.bookDir(bookId), language, authorIntent); |
| 28 | } |
| 29 | |
| 30 | async ensureControlDocumentsAt( |
| 31 | bookDir: string, |
no test coverage detected