(value: unknown)
| 160 | * that a primary template exists. All the other template options are optional. |
| 161 | */ |
| 162 | export function isTDeferBlockDetails(value: unknown): value is TDeferBlockDetails { |
| 163 | return ( |
| 164 | value !== null && |
| 165 | typeof value === 'object' && |
| 166 | typeof (value as TDeferBlockDetails).primaryTmplIndex === 'number' |
| 167 | ); |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Whether a given TNode represents a defer block. |
no outgoing calls
no test coverage detected
searching dependent graphs…