(
result: TOutput | null,
videoStatus: unknown,
)
| 1638 | } |
| 1639 | |
| 1640 | private createVideoPreview( |
| 1641 | result: TOutput | null, |
| 1642 | videoStatus: unknown, |
| 1643 | ): AIDevtoolsGenerationPreview { |
| 1644 | return createAIDevtoolsGenerationPreview({ |
| 1645 | outputKind: this.options.metadata.outputKind, |
| 1646 | result, |
| 1647 | videoStatus, |
| 1648 | }) |
| 1649 | } |
| 1650 | } |
| 1651 | |
| 1652 | // Wraps the plain emitter so callers can do `this.events.X(...)` and get: |
no test coverage detected