(id: string)
| 70 | } |
| 71 | |
| 72 | async findById(id: string): Promise<Readonly<Schema>> { |
| 73 | return this.#findById(id); |
| 74 | } |
| 75 | |
| 76 | async findByIds(ids: string[]): Promise<readonly Schema[]> { |
| 77 | return this.#findByIds(ids); |
no outgoing calls
no test coverage detected