( modifiers: readonly modifierKeys[] | readonly ts.Modifier[] | undefined, list: ts.VariableDeclarationList )
| 211 | } |
| 212 | |
| 213 | export function variableStatement( |
| 214 | modifiers: readonly modifierKeys[] | readonly ts.Modifier[] | undefined, |
| 215 | list: ts.VariableDeclarationList |
| 216 | ) { |
| 217 | return ts.factory.createVariableStatement( |
| 218 | modifiers?.map((m) => modifier(m)), |
| 219 | list |
| 220 | ); |
| 221 | } |
| 222 | |
| 223 | export function variableDeclarationList( |
| 224 | declarations: ts.VariableDeclaration[], |
nothing calls this directly
no test coverage detected
searching dependent graphs…