(value: unknown)
| 271 | } |
| 272 | |
| 273 | export function readSnapshotNodes(value: unknown): SnapshotNode[] { |
| 274 | // Snapshot nodes are produced by the daemon snapshot pipeline and treated as trusted here. |
| 275 | return Array.isArray(value) ? (value as SnapshotNode[]) : []; |
| 276 | } |
| 277 | |
| 278 | export function buildFlags(options: InternalRequestOptions): CommandFlags { |
| 279 | const leaseScope = leaseScopeFromOptions(options); |
no outgoing calls
no test coverage detected
searching dependent graphs…