(onfinally?: (() => void) | undefined | null)
| 586 | } |
| 587 | |
| 588 | override finally(onfinally?: (() => void) | undefined | null): Promise<T> { |
| 589 | return this.parse().finally(onfinally); |
| 590 | } |
| 591 | } |
| 592 | |
| 593 | export class CursorPagePromise<TItemSchema extends z.ZodTypeAny> |
no test coverage detected