(pattern: string)
| 703 | } |
| 704 | |
| 705 | glob(pattern: string): string[] { |
| 706 | // glob matches keys only, so it resolves no lazy content — it sees the full |
| 707 | // path structure (eager keys + lazy placeholders) for free. |
| 708 | const includeDeleted = pattern.startsWith('recently-deleted') |
| 709 | return ops.glob(this.keyView(includeDeleted), pattern) |
| 710 | } |
| 711 | |
| 712 | async read(path: string, offset?: number, limit?: number): Promise<ReadResult | null> { |
| 713 | // Resolve the one lazy artifact being read into `files`; a no-op for eager |
no test coverage detected