(id: string)
| 136 | } |
| 137 | |
| 138 | get(id: string): ScheduleEntry | undefined { |
| 139 | return this.db.prepare(`SELECT * FROM schedules WHERE id = ?`).get(id) as ScheduleEntry | undefined; |
| 140 | } |
| 141 | |
| 142 | /** Find by exact id, id prefix (>=4 chars), or exact name. */ |
| 143 | resolve(idOrName: string): ScheduleEntry | undefined { |
no outgoing calls
no test coverage detected