(source: string, specifiers: IImportSpecifierData[])
| 54 | } |
| 55 | |
| 56 | addImportDeclaration(source: string, specifiers: IImportSpecifierData[]) { |
| 57 | this.ast = addImportDeclaration(this.ast, source, specifiers); |
| 58 | return this; |
| 59 | } |
| 60 | |
| 61 | updateImportDeclaration(source: string, specifiers: IImportSpecifierData[]) { |
| 62 | this.ast = updateImportDeclaration(this.ast, source, specifiers); |
no test coverage detected